Home >Web Front-end >JS Tutorial >js clock flop effect implementation code sharing_javascript skills

js clock flop effect implementation code sharing_javascript skills

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-05-16 15:44:531615browse

Let me show you the operation renderings first to see if it looks great!

This is the rendering when the editor captured the clock flop:

The JavaScript clock flop effect code shared with you is as follows

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Create an Animated Flip Down Clock</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="wrapper">

 <div id="back">
  <div id="upperHalfBack">
  <img src="spacer.png" /><img id="hoursUpBack" src="Single/Up/AM/0.png"/>
  <img id="minutesUpLeftBack" src="Double/Up/Left/0.png" class="asd" /><img id="minutesUpRightBack" src="Double/Up/Right/0.png"/>
  <img id="secondsUpLeftBack" src="Double/Up/Left/0.png" /><img id="secondsUpRightBack" src="Double/Up/Right/0.png"/>
  </div>
  <div id="lowerHalfBack">
  <img src="spacer.png" /><img id="hoursDownBack" src="Single/Down/AM/0.png" />
  <img id="minutesDownLeftBack" src="Double/Down/Left/0.png" /><img id="minutesDownRightBack" src="Double/Down/Right/0.png" />
  <img id="secondsDownLeftBack" src="Double/Down/Left/0.png" /><img id="secondsDownRightBack" src="Double/Down/Right/0.png" />
  </div>
 </div>
 
 
 <div id="front">
  <div id="upperHalf">
  <img src="spacer.png" /><img id="hoursUp" src="Single/Up/AM/0.png"/>
  <img id="minutesUpLeft" src="Double/Up/Left/0.png" /><img id="minutesUpRight" src="Double/Up/Right/0.png"/>
  <img id="secondsUpLeft" src="Double/Up/Left/0.png" /><img id="secondsUpRight" src="Double/Up/Right/0.png"/>
  </div>
  <div id="lowerHalf">
  <img src="spacer.png" /><img id="hoursDown" src="Single/Down/AM/0.png"/>
  <img id="minutesDownLeft" src="Double/Down/Left/0.png" /><img id="minutesDownRight" src="Double/Down/Right/0.png" />
  <img id="secondsDownLeft" src="Double/Down/Left/0.png" /><img id="secondsDownRight" src="Double/Down/Right/0.png" />
  </div>
 </div> 
</div>



</body>
<script src="mootools.js" type="text/javascript"></script>
<script src="animate.js" type="text/javascript"></script>
</html>

The above is the JavaScript clock flop code shared with you, I hope you like it.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn