怎么用css3实现钟表效果

 我来答
若以下回答无法解决问题,邀请你更新回答
育知同创教育
2018-01-17 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
展开全部
  • <!DOCTYPE html>  

  • <html>  

  • <head lang="en">  

  • <meta charset="UTF-8">  

  • <title></title>  

  • <style>  

  • .box {  

  • width: 200px;  

  • height: 200px;  

  • border: 10px solid #ccc;  

  • border-radius: 110px;  

  • margin: 100px auto;  

  • position: relative;  

  • }  

  • .line {  

  • width: 4px;  

  • height: 200px;  

  • background: #ccc;  

  • position: absolute;  

  • left: 50%;  

  • margin-left: -2px;  

  • }  

  • /*时钟刻度线*/  

  • .line1 {  

  • transform: rotate(30deg);  

  • }  

  • .line2 {  

  • transform: rotate(60deg);  

  • }  

  • .line3 {  

  • transform: rotate(90deg);  

  • }  

  • .line4 {  

  • transform: rotate(120deg);  

  • }  

  • .line5 {  

  • transform: rotate(150deg);  

  • }  

  • .line6 {  

  • transform: rotate(180deg);  

  • }  

  • /*将刻度线遮住,只留一点点*/  

  • .mask {  

  • width: 180px;  

  • height: 180px;  

  • background: #fff;  

  • border-radius: 90px;  

  • position: absolute;  

  • margin: 10px;  

  • }  

  • /*时针*/  

  • .hour {  

  • width: 8px;  

  • height: 50px;  

  • background: red;  

  • position: absolute;  

  • left: 50%;  

  • top: 50%;  

  • margin-left: -4px;  

  • margin-top: -50px;  

  • /*43200s匀速转动一圈*/  

  • animation: move 43200s linear infinite;  

  • /*设置旋转的中心点为中间底部*/  

  • transform-origin: center bottom;  

  • }  

  • /*分针*/  

  • .minute {  

  • width: 6px;  

  • height: 60px;  

  • background: blue;  

  • position: absolute;  

  • left: 50%;  

  • top: 50%;  

  • margin-left: -3px;  

  • margin-top: -60px;  

  • /*3600s转一圈,匀速转动*/  

  • animation: move 3600s linear infinite;  

  • /*设置旋转的中心点为中间底部*/  

  • transform-origin: center bottom;  

  • }  

  • /*秒针*/  

  • .second {  

  • width: 4px;  

  • height: 80px;  

  • background: yellow;  

  • position: absolute;  

  • left: 50%;  

  • top: 50%;  

  • margin-left: -2px;  

  • margin-top: -80px;  

  • /*60s转一圈,分60步*/  

  • animation: move 60s infinite steps(60);  

  • /*设置旋转的中心点为中间底部*/  

  • transform-origin: center bottom;  

  • }  

  • /*最中心的遮罩层*/  

  • .circle {  

  • width: 12px;  

  • height: 12px;  

  • border-radius: 6px;  

  • background: #ccc;  

  • position: absolute;  

  • left: 50%;  

  • margin-left: -6px;  

  • margin-top: 90px;  

  • }  

  • /*旋转从0度到360度*/  

  • @keyframes move {  

  • from {  

  • transform: rotate(0deg);  

  • }  

  • to {  

  • transform: rotate(360deg);  

  • }  

  • }  

  • </style>  

  • </head>  

  • <body>  

  • <div class="box">  

  • <div class="line line1"></div>  

  • <div class="line line2"></div>  

  • <div class="line line3"></div>  

  • <div class="line line4"></div>  

  • <div class="line line5"></div>  

  • <div class="line line6"></div>  

  • <div class="mask"></div>  

  • <div class="hour"></div>  

  • <div class="minute"></div>  

  • <div class="second"></div>  

  • <div class="circle"></div>  

  • </div>  

  • </body>  

  • </html>  

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式