时间:2022-02-14来源:www.pcxitongcheng.com作者:电脑系统城
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<style type= "text/css" > .div 3 { position : absolute ; z-index : 3 ; left : 40px ; top : 40px ; font-weight : bold ; background : red ; animation: myfirst 2 15 s infinite linear; } @keyframes myfirst 2 { from {transform: rotate( 0 deg);} to {transform: rotate( 359 deg);} } @keyframes myfirst { from {transform: rotate( 0 deg);} to {transform: rotate( -359 deg);} } </style> <div class= "div3" >旋转吧</div> |
效果图:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
<html> <head> <style type= "text/css" > body { background : #000a2d ; } .div 2 { position : absolute ; z-index : 2 ; left : 40px ; top : 40px ; font-weight : bold ; height : 400px ; width : 400px ; animation: myfirst 2 15 s infinite linear; } .div 3 { position : absolute ; z-index : 3 ; left : 11% ; top : 22% ; font-weight : bold ; color : #fff ; background : red ; } @keyframes myfirst 2 { from {transform: rotate( 0 deg);} to {transform: rotate( 359 deg);} } @keyframes myfirst { from {transform: rotate( 0 deg);} to {transform: rotate( -359 deg);} } </style> </head> <body> <div class= "div3" >最上层</div> <div class= "div2" ><img src= "./centerBg3.png" style= "width:100%;height:100%;" ></div> </body> </html> |
效果
到此这篇关于CSS3实现360度循环旋转的文章就介绍到这了,更多相关CSS3 循环旋转内容请搜索脚本之家以前的文章或继续浏览下面的相关文章!
2023-03-06
css3鼠标滑过实现动画线条边框2023-03-06
css scroll-snap控制滚动元素的实现2023-03-06
CSS实现多层嵌套列表自动编号的示例代码传统的灰色纯色边框你是不是觉得太难看了?你是否想设计一些精美的边框,例如渐变、圆角、彩色的边框?那你来对地方了,本文将介绍如何用纯CSS就能实现具有渐变和圆角的彩色边框...
2023-03-06
今天给大家带来一个如何实现圆角三角形的方案,这个方案虽然可以实现,但是也是借助拼凑等方式来实现的,假如想一个div来实现圆角三角形,还是比较困难的。之前文章讲了如何实现对话框,里面介绍了三角形的实现方式。今天讲讲...
2023-03-06