您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“怎么用純CSS實現一個轉動的自行車車輪的動畫效果”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“怎么用純CSS實現一個轉動的自行車車輪的動畫效果”這篇文章吧。
代碼解讀
定義dom,容器中包含6個元素:
<divclass="wheel">
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
<span></span>
</div>
居中顯示:
body{
margin:0;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
background-image:linear-gradient(#555,#222);
}
畫出輪圈:
.wheel{
width:9em;
height:9em;
font-size:25px;
border:0.4emsolid#777;
border-radius:50%;
box-shadow:0000.5em#111;
}
定義輻條的樣式:
.wheel{
display:flex;
align-items:center;
justify-content:center;
}
.wheelspan{
position:absolute;
width:8em;
height:1em;
border:0.1emsolid;
border-color:#ccctransparent;
}
定義變量,畫出多根幅條:
.wheelspan{
transform:rotate(calc((var(--n)-1)*30deg));
}
.wheelspan:nth-child(1){
--n:1;
}
.wheelspan:nth-child(2){
--n:2;
}
.wheelspan:nth-child(3){
--n:3;
}
.wheelspan:nth-child(4){
--n:4;
}
.wheelspan:nth-child(5){
--n:5;
}
.wheelspan:nth-child(6){
--n:6;
}
讓車輪轉動起來:
.wheelspan{
animation:run4slinearinfinite;
}
@keyframesrun{
to{
transform:rotate(calc((var(--n)-1)*30deg+360deg));
}
}
用偽元素畫出地面上的線條:
.wheel{
position:relative;
}
.wheel::before{
content:'';
position:absolute;
width:15em;
height:0.2em;
top:11em;
background-image:linear-gradient(
toright,
silver0,silver4em,
transparent4em,transparent5em,
silver5em,silver10em,
transparent10em,transparent12em,
silver12em,silver14em,
transparent14em,transparent15em
);
}
最后,讓地面上的線條動起來,形成車輪向前走的效果:
.wheel::before{
background-position:15em;
animation:run26slinearinfinite;
}
@keyframesrun2{
to{
background-position:-15em;
}
}
以上是“怎么用純CSS實現一個轉動的自行車車輪的動畫效果”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。