我在div
标记中放置了一个圆形图像。现在我想在这个图像上放置一个字体很棒的微调器。
我正在寻找的效果是制作旋转图像边框,例如使用this spinner icon。
微调器和图像必须具有相同的半径。
解决方案可以在没有字体真棒的微调器的情况下制作,但使用纯CSS3。
答案 0 :(得分:4)
使用:
<i class="fa fa-spinner fa-circle-o-notch"><img href="your-image" id="image"></img></i>
并将此添加到您的css:
#image {
display: inline;
}
答案 1 :(得分:4)
Font Awesome可以为您完成工作,但是如果您希望让任何HTML元素无休止地轮换,您可以使用@keyframes
rule - 由@-webkit-keyframes
补充以获得Safari支持 - 来定义旋转行为。使用animation
property将此行为应用于HTML元素。
下面的代码段定义rotating
动画并将其应用于.circle
。 .circle
元素和图片与position: absolute
一起放置,以便圆圈围绕图像。
@-webkit-keyframes rotating {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.circle {
animation: rotating 2.5s linear infinite;
position: absolute;
left: -15px;
top: -15px;
}
#demo {
padding: 40px;
color: #222;
margin: 40px;
position: relative;
font-size: 130px;
}
#demo img {
border-radius: 50%;
width: 100px;
height: 100px;
position: absolute;
left: 0;
top: 0;
}
&#13;
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<div id="demo">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_Fe2cRDzAEE4mE5DDxYsbx9Emt2aQYVs-kmsDnOc8PeHOSlYV" />
<div class="circle fa fa-circle-o-notch"></div>
</div>
&#13;