【发布时间】:2016-06-14 11:12:18
【问题描述】:
我正在尝试使用 css 仅旋转边框,但字体图标也在旋转。如何停止图标的旋转并只制作边框?
CSS:
.circle {
width: 100px;
height: 100px;
background: transparent;
border-radius: 50%;
border: 2px dashed #000;
-webkit-animation-name: Rotate;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-moz-animation-name: Rotate;
-moz-animation-duration: 2s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-ms-animation-name: Rotate;
-ms-animation-duration: 2s;
-ms-animation-iteration-count: infinite;
-ms-animation-timing-function: linear;
}
.play {
padding: 20px 30px;
font-size: 56px;
}
@-webkit-keyframes Rotate
{
from{-webkit-transform:rotate(0deg);}
to{-webkit-transform:rotate(360deg);}
}
@-moz-keyframes Rotate
{
from{-moz-transform:rotate(0deg);}
to{-moz-transform:rotate(360deg);}
}
@-ms-keyframes Rotate
{
from{-ms-transform:rotate(0deg);}
to{-ms-transform:rotate(360deg);}
}
HTML:
<div class="circle">
<div class="play"><i class="fa fa-play"></i></div>
</div>
这段代码哪里出错了?
【问题讨论】:
-
太棒了。让我看看。
-
@cssGEEK 您的技术不适用于轮换。我已经尝试过了,但谢谢。
-
正如大家所建议的,不要旋转包含内容的节点。如果不想添加额外的 DOM 节点,可以使用伪元素来解决。 codepen.io/anon/pen/VjaVmG
标签: html css css-animations