1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html lang="en" >
- <head>
- <meta charset="UTF-8">
- <title>Flippin' Countdown</title>
- <link rel="stylesheet" href="css/style.css">
- </head>
- <body>
- <div class="flipper-card"></div>
- <template id="flipper-card-template">
- <span class="current top {{ curSize }}">{{ curVal }}</span>
- <span class="next top {{ nextSize }}">{{ nextVal }}</span>
- <span class="current bottom {{ curSize }}">{{ curVal }}</span>
- <span class="next bottom {{ nextSize }}">{{ nextVal }}</span>
- </template>
- <script src="js/index.js"></script>
- </body>
- </html>
|