index.html 549 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en" >
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Flippin' Countdown</title>
  6. <link rel="stylesheet" href="css/style.css">
  7. </head>
  8. <body>
  9. <div class="flipper-card"></div>
  10. <template id="flipper-card-template">
  11. <span class="current top {{ curSize }}">{{ curVal }}</span>
  12. <span class="next top {{ nextSize }}">{{ nextVal }}</span>
  13. <span class="current bottom {{ curSize }}">{{ curVal }}</span>
  14. <span class="next bottom {{ nextSize }}">{{ nextVal }}</span>
  15. </template>
  16. <script src="js/index.js"></script>
  17. </body>
  18. </html>