jQuery超酷平面式时钟效果代码分享

前端之家收集整理的这篇文章主要介绍了jQuery超酷平面式时钟效果代码分享前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了jQuery超酷平面式时钟效果代码分享给大家供大家参考。具体如下: jQuery制作的超酷平面式时钟效果,把日期和时间通过横向刻度条展现,经测试效果非常酷,是一个很不错的学习实例。 这里我们还要提到之前实现的另一个特别新颖的时间显示样式:

,两者都完全突破了传统的时钟概念,感兴趣的各位可不要错过了哈。

运行效果图:---------------------- -----------------------

小提示:浏览器中如果不能正常运行,可以尝试切换浏览模式。 为大家分享的jQuery超酷平面式时钟效果代码如下

jQuery制作的超酷平面式时钟效果_编程之家

<style type="text/css">

body { background:#bae1ea url(back.jpg) 50% 0px no-repeat; color:#000; }

/ container for clock /

wrap { position:relative; margin: 100px auto 0; width:700px; height:440px; background:url("slider clock(trans).png") no-repeat top left; border-style:solid; border-width:1px; overflow:hidden; }

/ style background and size of all sliding divs /

wrap div { position:absolute; margin-left:-700px; width:1400px; height:40px; background:url("slider clock(trans).png") repeat-x; }

/ specific position and background position for sliding divs /

wrap #day { top:40px; background-position:0 -440px; }

wrap #month { top:120px; background-position:0 -480px; }

wrap #date { top:200px; background-position:0 -520px; }

wrap #hour { top:280px; background-position:0 -560px; }

wrap #min { top:320px; background-position:0 -600px; }

wrap #sec { top:400px; background-position:0 -640px; }

title { margin:20px auto; width:550px; text-align:center; }

other { margin:10px auto; width:550px; text-align:center; }

<script type="text/javascript" src="jquery.js">

<div id="wrap">

<div id="day">

<div id="month">


<div id="date">

<div id="hour">

<div id="min">

<div id="sec">

<div style="text-align:center;clear:both">

来源: 代码整理: 感谢:

转载请注明出处,此代码仅供学习交流,请勿用于商业用途。

以上就是为大家分享的jQuery超酷平面式时钟效果代码,希望大家可以喜欢。

原文链接:https://www.f2er.com/jquery/52730.html
jQuery刻度条平面式时钟时钟

猜你在找的jQuery相关文章