We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b1ec99 commit 928b280Copy full SHA for 928b280
examples/twenty-four-hour-clock-without-seconds.html
@@ -0,0 +1,24 @@
1
+<html>
2
+ <head>
3
+ <link rel="stylesheet" href="../compiled/flipclock.css">
4
+
5
+ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
6
7
+ <script src="../compiled/flipclock.js"></script>
8
+ </head>
9
+ <body>
10
+ <div class="clock" style="margin:2em;"></div>
11
12
+ <script type="text/javascript">
13
+ var clock;
14
15
+ $(document).ready(function() {
16
+ clock = $('.clock').FlipClock({
17
+ clockFace: 'TwentyFourHourClock',
18
+ showSeconds: false
19
+ });
20
21
+ </script>
22
23
+ </body>
24
+</html>
0 commit comments