HTML5技术

CSS3 旋转的八卦图 - 胡樟军

字号+ 作者:H5之家 来源:H5之家 2017-04-07 17:01 我要评论( )

!DOCTYPE htmlhtmlheadmeta charset="UTF-8"titlecss3八卦/titlestyle#container{height: 203px;width: 200px;border-radius: 200px;box-shadow: 0 0 4px #666666;margin: 100px auto;background: linear-gradient(90deg,black 50%,white 50%);}#top,#bottom

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>css3八卦</title> <style> #container{height: 203px;width: 200px;border-radius: 200px;box-shadow: 0 0 4px #666666;margin: 100px auto; background: linear-gradient(90deg,black 50%,white 50%);} #top,#bottom{height: 100px;width: 100px;margin: 0 auto;border-radius: 100px} #top{border: 1px solid white;} #bottom{border: 1px solid black;} #inner1,#inner2{height:25px;width: 25px;margin: 25px auto;border-radius: 50px; } #inner1{background: black} #inner2{background: white} #top{background: white} #bottom{background: black} @keyframes bonce{ 0%{transform: rotate(0deg)} 100%{transform: rotate(360deg)} } #container{animation: bonce 5s infinite linear;} </style> </head> <body> <div> <div> <div></div> </div> <div> <div></div> </div> </div> </body> </html>

  

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • css3实现圆角边框渐变 - 就只是小茗

    css3实现圆角边框渐变 - 就只是小茗

    2017-03-08 15:00

  • Css3中拖拽效果的实例(带有注释~欢迎指教) - 一混五六年

    Css3中拖拽效果的实例(带有注释~欢迎指教) - 一混五六年

    2017-03-04 10:00

  • 立体骰子(css3和js) - 柿子橙

    立体骰子(css3和js) - 柿子橙

    2017-02-26 14:00

  • jQuery + CSS3实现环形进度条 - brightest_star

    jQuery + CSS3实现环形进度条 - brightest_star

    2017-02-09 10:01

网友点评