jquery或js怎么实现div原地变大变小
从中心像四周。
下面是html代码
<div class="dw-index">
<div class="dw-index-1">
</div>
<div class="dw-index-2">
</div>
<div class="dw-index-3">
</div>
</div>
下面是css代码
.dw-index-1 {
border-radius: 5.4em;
width: 5.4em;
height: 5.4em;
line-height: 6.4em;
position: relative;
left: 50%;
margin-left: 4em;
top: 4em;
}
.dw-index-2 {
border-radius: 7.4em;
width: 7.4em;
height: 7.4em;
line-height: 9.4em;
position: absolute;
left: 50%;
top: 10em;
}
.dw-index-3 {
border-radius: 9.4em;
width: 9.4em;
height: 9.4em;
line-height: 13em;
position: relative;
left: 50%;
margin-left: 5em;
top: 11em;
}
哔哔————
10 years, 2 months ago
Answers
css3,查下手册,就有相关属性。
http://www.cnblogs.com/lhb25/archive/2013/12/28/loading-spinners-animated-with-css3.html
看下这个链接里介绍的内容。
蛋疼的路人甲
answered 10 years, 2 months ago