實(shí)例教程 純CSS3打造非常炫的加載動(dòng)畫效果
發(fā)布時(shí)間:2014-11-05 14:26:31 作者:佚名
我要評(píng)論

這篇文章主要為大家介紹了一款非常炫的加載圖,代碼非常簡(jiǎn)單。沒(méi)有用任何javascript代碼。純css3實(shí)現(xiàn)。用在需要一定時(shí)間加載的地方非常合適,感興趣的可以來(lái)復(fù)制代碼學(xué)習(xí)哦
純css3打造的一款非常炫的加載圖。用在需要一定時(shí)間加載的地方非常合適。代碼非常簡(jiǎn)單。沒(méi)有用任何javascript代碼。純css3實(shí)現(xiàn)。先上效果圖:
實(shí)現(xiàn)代碼如下:
html代碼:
XML/HTML Code復(fù)制內(nèi)容到剪貼板
- <div class="content">
- <div style="width: 970px; margin: auto">
- </div>
- <div class="rotate">
- <span class="triangle base"></span><span class="triangle no1"></span><span class="triangle no2">
- </span><span class="triangle no3"></span>
- </div>
- </div>
CSS代碼:
CSS Code復(fù)制內(nèi)容到剪貼板
- body {
- padding:0;
- margin:0;
- background-color: #2a4e66;
- overflow: hidden;
- }
- .content {
- width:100%;
- height:100%;
- top:0;
- rightright:0;
- bottombottom:0;
- left:0;
- position:absolute;
- }
- .rotate {
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -93px 0 0 -93px;
- background: transparent;
- width: 186px;
- height: 186px;
- border-radius: 50%;
- z-index: 20;
- }
- .rotate:after {
- content: '';
- position: absolute;
- box-shadow: 0 0 30px #ffffff, 0 0 10px #ffffff, 0 0 2px #ffffff, inset 0 0 2px #ffffff, inset 0 0 4px #ffffff;
- width: 186px;
- height: 186px;
- border-radius: 50%;
- z-index: 10;
- }
- span.triangle.base {
- position: absolute;
- width: 0;
- height: 0;
- margin: 46px 0 0 13px;
- border-left: 80px solid transparent;
- border-right: 80px solid transparent;
- border-top: 140px solid #eeeeee;
- transform-origin: 50% 50%;
- z-index: 20;
- }
- span.triangle.no1 {
- position: absolute;
- margin: 46px 0 0 13px;
- width: 0;
- height: 0;
- border-left: 80px solid transparent;
- border-right: 80px solid transparent;
- border-bottom: 140px solid #eeeeee;
- transform-origin: 0 100%;
- z-index: 20;
- }
- span.triangle.no2 {
- position: absolute;
- margin: 46px 0 0 13px;
- width: 0;
- height: 0;
- border-left: 80px solid transparent;
- border-right: 80px solid transparent;
- border-bottom: 140px solid #eeeeee;
- transform-origin: 100% 100%;
- z-index: 20;
- }
- span.triangle.no3 {
- position: absolute;
- margin: 46px 0 0 13px;
- width: 0;
- height: 0;
- border-left: 80px solid transparent;
- border-right: 80px solid transparent;
- border-bottom: 140px solid #eeeeee;
- transform-origin: 50% 100%;
- z-index: 20;
- }
- /* Animation */
- .rotate {
- -webkit-animation: rotateTriangle 3s linear infinite;
- animation: rotateTriangle 3s linear infinite;
- }
- @-webkit-keyframes rotateTriangle {
- from { -webkit-transform: rotate(0deg); }
- to { -webkit-transform: rotate(60deg); }
- }
- @keyframes rotateTriangle {
- from { transform: rotate(0deg); }
- to { transform: rotate(60deg); }
- }
- .rotate:after {
- -webkit-animation: glowAnimation 3s ease infinite;
- animation: glowAnimation 3s ease infinite;
- }
- @-webkit-keyframes glowAnimation {
- 0% { box-shadow: 0 0 30px #ffffff, 0 0 10px #ffffff, 0 0 2px #ffffff, inset 0 0 2px #ffffff, inset 0 0 4px #ffffff; }
- 10% { box-shadow: 0 0 80px #ffffff, 0 0 20px #ffffff, 0 0 2px #ffffff, inset 0 0 4px #ffffff, inset 0 0 8px #ffffff; }
- 100% { box-shadow: 0 0 30px #ffffff, 0 0 10px #ffffff, 0 0 2px #ffffff, inset 0 0 2px #ffffff, inset 0 0 4px #ffffff; }
- }
- @keyframes glowAnimation {
- 0% { box-shadow: 0 0 30px #ffffff, 0 0 10px #ffffff, 0 0 2px #ffffff, inset 0 0 2px #ffffff, inset 0 0 4px #ffffff; }
- 10% { box-shadow: 0 0 80px #ffffff, 0 0 20px #ffffff, 0 0 2px #ffffff, inset 0 0 4px #ffffff, inset 0 0 8px #ffffff; }
- 100% { box-shadow: 0 0 30px #ffffff, 0 0 10px #ffffff, 0 0 2px #ffffff, inset 0 0 2px #ffffff, inset 0 0 4px #ffffff; }
- }
- span.triangle.base {
- -webkit-animation: scaleTriangleBase 3s linear infinite;
- animation: scaleTriangleBase 3s linear infinite;
- }
- @-webkit-keyframes scaleTriangleBase {
- from { -webkit-transform: translate(0px,-11px) scale(0.5); }
- to { -webkit-transform: translate(0px,0px) scale(1); }
- }
- @keyframes scaleTriangleBase {
- from { transform: translate(0px,-11px) scale(0.5); }
- to { transform: translate(0px,0px) scale(1); }
- }
- span.triangle.no1 {
- -webkit-animation: scaleTriangleOne 3s linear infinite;
- animation: scaleTriangleOne 3s linear infinite;
- }
- @-webkit-keyframes scaleTriangleOne {
- from { -webkit-transform: translate(0px,-46px) scale(0.5); }
- to { -webkit-transform: translate(-80px,0px) scale(0); }
- }
- @keyframes scaleTriangleOne {
- from { transform: translate(0px,-46px) scale(0.5); }
- to { transform: translate(-80px,0px) scale(0); }
- }
- span.triangle.no2 {
- -webkit-animation: scaleTriangleTwo 3s linear infinite;
- animation: scaleTriangleTwo 3s linear infinite;
- }
- @-webkit-keyframes scaleTriangleTwo {
- from { -webkit-transform: translate(0px,-46px) scale(0.5); }
- to { -webkit-transform: translate(80px,0px) scale(0); }
- }
- @keyframes scaleTriangleTwo {
- from { transform: translate(0px,-46px) scale(0.5); }
- to { transform: translate(80px,0px) scale(0); }
- }
- span.triangle.no3 {
- -webkit-animation: scaleTriangleThree 3s linear infinite;
- animation: scaleTriangleThree 3s linear infinite;
- }
- @-webkit-keyframes scaleTriangleThree {
- from { -webkit-transform: translate(0px,-116px) scale(0.5); }
- to { -webkit-transform: translate(0px,-280px) scale(0); }
- }
- @keyframes scaleTriangleThree {
- from { transform: translate(0px,-116px) scale(0.5); }
- to { transform: translate(0px,-280px) scale(0); }
- }
相關(guān)文章
CSS3 最強(qiáng)二維布局系統(tǒng)之Grid 網(wǎng)格布局
CS3的Grid網(wǎng)格布局是目前最強(qiáng)的二維布局系統(tǒng),可以同時(shí)對(duì)列和行進(jìn)行處理,將網(wǎng)頁(yè)劃分成一個(gè)個(gè)網(wǎng)格,可以任意組合不同的網(wǎng)格,做出各種各樣的布局,本文介紹CSS3 最強(qiáng)二維布局系2025-02-27- 本文介紹了如何使用CSS3的transform屬性和動(dòng)畫技巧實(shí)現(xiàn)波浪式圖片墻,通過(guò)設(shè)置圖片的垂直偏移量,并使用動(dòng)畫使其周期性地改變位置,可以創(chuàng)建出動(dòng)態(tài)且具有波浪效果的圖片墻,同2025-02-27
CSS3模擬實(shí)現(xiàn)一個(gè)雷達(dá)探測(cè)掃描動(dòng)畫特效(最新推薦)
文章介紹了如何使用CSS3實(shí)現(xiàn)一個(gè)雷達(dá)探測(cè)掃描的效果,包括夜色背景、蜘蛛網(wǎng)盤、掃描體的轉(zhuǎn)動(dòng)效果、尾巴陰影以及被掃描到的光點(diǎn),通過(guò)HTML和CSS的配合,實(shí)現(xiàn)了豐富的動(dòng)畫效果,2025-02-21- CSS3的Flexbox是一種強(qiáng)大的布局模式,通過(guò)設(shè)置display:flex可以輕松實(shí)現(xiàn)對(duì)齊、排列和分布網(wǎng)頁(yè)元素,它解決了傳統(tǒng)布局方法中的對(duì)齊、間距分配和自適應(yīng)布局等問(wèn)題,接下來(lái)通過(guò)本2025-02-19
css3 實(shí)現(xiàn)icon刷新轉(zhuǎn)動(dòng)效果
本文給大家介紹css3 實(shí)現(xiàn)icon刷新轉(zhuǎn)動(dòng)效果,文章開頭給大家介紹了webkit-transform、animation、@keyframes這三個(gè)屬性,結(jié)合實(shí)例代碼給大家介紹的非常詳細(xì),感興趣的朋友一2025-02-19CSS3動(dòng)態(tài)效果之過(guò)渡屬性(最新推薦)
CSS3過(guò)渡屬性用于實(shí)現(xiàn)元素從一種樣式平滑過(guò)渡到另一種樣式,通過(guò)設(shè)置transition-property過(guò)渡屬性、transition-duration過(guò)渡時(shí)長(zhǎng)transition-timing-function過(guò)渡函數(shù)和trans2025-02-19CSS3實(shí)現(xiàn)動(dòng)態(tài)旋轉(zhuǎn)加載樣式的示例代碼
本文介紹了如何使用CSS3創(chuàng)建一個(gè)簡(jiǎn)單的動(dòng)態(tài)旋轉(zhuǎn)加載樣式,通過(guò)定義一個(gè)帶有類名“l(fā)oader”的HTML元素,并使用CSS樣式和@keyframes規(guī)則來(lái)實(shí)現(xiàn)旋轉(zhuǎn)動(dòng)畫,你可以根據(jù)需要調(diào)整樣式2025-02-19使用CSS3實(shí)現(xiàn)平滑的過(guò)渡動(dòng)畫效果(實(shí)例代碼)
這篇文章主要介紹了如何使用CSS3的transition屬性實(shí)現(xiàn)平滑的過(guò)渡動(dòng)畫,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),感興趣的朋友一起看看吧2025-02-13CSS3中使用flex和grid實(shí)現(xiàn)等高元素布局的示例代碼
本文介紹了使用CSS3中的Flexbox和Grid布局實(shí)現(xiàn)等高元素布局的方法,通過(guò)簡(jiǎn)單的兩列實(shí)現(xiàn)、每行放置3列以及全部代碼的展示,展示了這兩種布局方式的實(shí)現(xiàn)細(xì)節(jié)和效果,感興趣的朋2025-02-11使用CSS3和SVG創(chuàng)建圓形進(jìn)度條動(dòng)畫效果
CSS3和SVG的結(jié)合使用為網(wǎng)頁(yè)設(shè)計(jì)帶來(lái)了創(chuàng)新的動(dòng)態(tài)視覺(jué)效果,本文通過(guò)一個(gè)圓形進(jìn)度條的動(dòng)畫特效示例,展示了如何利用CSS3的動(dòng)畫功能和SVG的矢量圖形能力來(lái)創(chuàng)建豐富的用戶交互體2024-10-24