您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“css如何實現吃豆豆加載動畫效果”,內容詳細,步驟清晰,細節處理妥當,希望這篇“css如何實現吃豆豆加載動畫效果”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
豆豆加載效果
point_down:html代碼:
<div class="demo"> <div class="pacman"></div> <div class="dot"></div>
point_down:css代碼:
<style> @-webkit-keyframes up { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(-30deg); } } @-moz-keyframes up { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(-30deg); } } @-o-keyframes up { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(-30deg); } } @keyframes up { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(-30deg); } } @-webkit-keyframes down { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(30deg); } } @-moz-keyframes down { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(30deg); } } @-o-keyframes down { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(30deg); } } @keyframes down { 0%, 100% { transform: rotate(0); } 50% { transform: rotate(30deg); } } @-webkit-keyframes r-to-l { 100% { margin-left: -1px; } } @-moz-keyframes r-to-l { 100% { margin-left: -1px; } } @-o-keyframes r-to-l { 100% { margin-left: -1px; } } @keyframes r-to-l { 100% { margin-left: -1px; } } body { background: #000; overflow: hidden; margin: 0; } body .pacman:before, body .pacman:after { content: ''; position: absolute; background: #FFC107; width: 100px; height: 50px; left: 50%; top: 50%; margin-left: -50px; margin-top: -50px; border-radius: 50px 50px 0 0; -webkit-animation: up 0.4s infinite; -moz-animation: up 0.4s infinite; -o-animation: up 0.4s infinite; animation: up 0.4s infinite; } body .pacman:after { margin-top: -1px; border-radius: 0 0 50px 50px; -webkit-animation: down 0.4s infinite; -moz-animation: down 0.4s infinite; -o-animation: down 0.4s infinite; animation: down 0.4s infinite; } body .dot { position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; margin-top: -5px; margin-left: 30px; border-radius: 50%; background: #ccc; z-index: -1; box-shadow: 30px 0 0 #ccc, 60px 0 0 #ccc, 90px 0 0 #ccc, 120px 0 0 #ccc, 150px 0 0 #ccc; -webkit-animation: r-to-l 0.4s infinite; -moz-animation: r-to-l 0.4s infinite; -o-animation: r-to-l 0.4s infinite; animation: r-to-l 0.4s infinite; } </style>
1.行內樣式,最直接最簡單的一種,直接對HTML標簽使用style=""。
2.內嵌樣式,就是將CSS代碼寫在之間,并且用進行聲明。
3.外部樣式,其中鏈接樣式是使用頻率最高,最實用的樣式,只需要在之間加上就可以了。其次就是導入樣式,導入樣式和鏈接樣式比較相似,采用@import樣式導入CSS樣式表,不建議使用。
讀到這里,這篇“css如何實現吃豆豆加載動畫效果”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。