HTML绘制齿轮,使用css3制作齿轮loading动画效果

HTML

首先在页面中引入font-awesome文件。

然后在放置动画的位置加上HTML结构:

CSS样式

然后通过下面的CSS样式来制作齿轮的动画效果。

#loader-wrapper {

width: 60px;

height: 60px;

margin: auto;

position: relative;

}

.loader{ position: absolute; }

#loader1{

color: #3A4652;

font-size: 35px;

text-align: center;

width: 35px;

height: 35px;

top: -20px;

left: 3px;

animation: animate-1 1s infinite linear;

}

#loader2{

color: #d72f2b;

font-size: 50px;

text-align: center;

height: 50px;

width: 50px;

right: -12px;

animation: animate-2 1s infinite linear;

}

#loader3{

color: #3A4652;

font-size: 35px;

text-align: center;

width: 35px;

height: 35px;

bottom: -10px;

left: 3px;

animation: animate-3 1s infinite linear;

}

@keyframes animate-1{

100% { transform: rotate(-180deg); }

}

@keyframes animate-2{

100% { transform: rotate(180deg); }

}

@keyframes animate-3{

100% { transform: rotate(-180deg); }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值