Skip to content

Commit

Permalink
- (Example) Added twenty four hour clock without seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
objectivehtml committed Oct 7, 2014
1 parent 9b1ec99 commit 928b280
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions examples/twenty-four-hour-clock-without-seconds.html
@@ -0,0 +1,24 @@
<html>
<head>
<link rel="stylesheet" href="../compiled/flipclock.css">

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>

<script src="../compiled/flipclock.js"></script>
</head>
<body>
<div class="clock" style="margin:2em;"></div>

<script type="text/javascript">
var clock;

$(document).ready(function() {
clock = $('.clock').FlipClock({
clockFace: 'TwentyFourHourClock',
showSeconds: false
});
});
</script>

</body>
</html>

0 comments on commit 928b280

Please sign in to comment.