首页 > 网站 > WEB开发 > 正文

css3旋转

2024-04-27 14:27:25
字体:
来源:转载
供稿:网友
CSS3旋转
<textareaclass="codetext"rows="12"><style>  .loding{ width:-5px; height:-5px; float:left; font-size:12px; } .spin { -webkit-transform: rotate(360deg); -webkit-animation: spin 1.5s linear infinite;  } @-webkit-keyframes spin { from {-webkit-transform: rotate(360deg);} to {-webkit-transform: rotate(0deg);}} .spin { transform: rotate(360deg); animation: spin 1.5s linear infinite;}4 @keyframes spin { from {transform: rotate(360deg);} to {transform: rotate(0deg);} } </style> <div class='loding spin' >◇</div></textarea><divstyle="clear:both"><inputclass="button"onclick="runCode(0)"type="button"value="运行代码"><inputclass="button"onclick="copyCode(0)"type="button"value="复制代码"><inputclass="button"onclick="saveCode(0)"type="button"value="另存代码"></div>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表