很多答案的H5介面上有旋轉倒數的效果,一個不斷旋轉減少的動畫,類似下圖的這樣。本文主要和大家介紹了css3 實現圓形旋轉倒數功能,需要的朋友可以參考下,希望能幫助到大家。
今天研究了下,可以透過border旋轉得到。一般我們可以透過border得到一個四段圓。
## 接下來接可以透過旋轉的方式形成一個倒數計時的效果:See the Pen circle by stoneniqiu (@stoneniqiu) on CodePen.
See the Pen circle-rotate by stoneniqiu (@stoneniqiu) on CodePen.## 一開始旋轉45度是為了讓半圓剛好立起來。然後旋轉一百八十度。
.rightcircle{ border-top: .4rem solid #8731fd; border-right: .4rem solid #8731fd; right: 0; transform: rotate(45deg) } .right_cartoon { -webkit-animation: circleProgressLoad_right 10s linear infinite forwards; animation: circleProgressLoad_right 10s linear infinite forwards; } @keyframes circleProgressLoad_right { 0% { -webkit-transform: rotate(46deg); transform: rotate(46deg) } 50%,to { -webkit-transform: rotate(-136deg); transform: rotate(-136deg) } }
@keyframes circleProgressLoad_left { 0%,50% { -webkit-transform: rotate(46deg); transform: rotate(46deg) } to { -webkit-transform: rotate(-136deg); transform: rotate(-136deg) } }
相關推薦:
以上是css3實現圓形旋轉倒數計時碼分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!