這篇文章主要介紹了CSS+JS實(shí)現(xiàn)浪漫流星雨動(dòng)畫效果的方法是什么,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
網(wǎng)站的建設(shè)成都創(chuàng)新互聯(lián)專注網(wǎng)站定制,經(jīng)驗(yàn)豐富,不做模板,主營網(wǎng)站定制開發(fā).小程序定制開發(fā),H5頁面制作!給你煥然一新的設(shè)計(jì)體驗(yàn)!已為展覽展示等企業(yè)提供專業(yè)服務(wù)。
首先我們來看看效果圖:
下面我們來看看如何實(shí)現(xiàn):
HTML代碼:
< body > < p class = “container” > < p id = “mask” > p > < p id = “sky” > p > < p id = “moon” > p > < p id = “stars” > p > < p class = “cloud cloud-1” > p >p > < p class = “cloud cloud-3” > p > p > body >
CSS代碼:
/* - - - - - - 重啟 - - - - - - */ * { 保證金:0 ; 填充:0 ; } html, body { width:100% ; 最小寬度:1000px ; 身高:100% ; 最小高度:400px ; 溢出:隱藏; } / * ------------畫布------------ * / .container { position:relative; 身高:100% ; } / *遮罩層* / #mask { position:absolute; 寬度:100% ; 身高:100% ; background:rgba(0,0,0,.8); z-index:900 ; } / *天空背景* / #sky { width:100% ; 身高:100% ; background:線性漸變(rgba(0,150,255,1),rgba(0,150,255,.8),rgba(0,150,255,.5)); } / *月亮* / #moon { position:absolute; 上:50px ; 右:200px ; 寬度:120px ; 身高:120px ; 背景:rgba(251,255,25,0.938); border-radius:50% ; box-shadow:0 0 20px rgba(251,255,25,0.5); z-index:9999 ; } / *閃爍星星* / .blink { position:absolute; background:rgb(255,255,255); border-radius:50% ; box-shadow:0 0 5px rgb(255,255,255); 不透明度:0 ; z-index:10000 ; } / *流星* / .star { position:absolute; 不透明度:0 ; z-index:10000 ; } .star :: after { content:“” ; 顯示:塊; 邊界:堅(jiān)固; border-width:2px 0 2px 80px ; / *流星隨長度逐漸縮小* / border-color:透明透明透明rgba(255,255,255,1); border-radius:2px 0 0 2px ; transform:rotate(-45deg); transform-origin:0 0 0 ; 盒子陰影:0 0 20px rgba(255,255,255,.3); } / *云* / .cloud { position:absolute; 寬度:100% ; 身高:100px ; } .cloud-1 { bottom: - 100px ; z-index:1000 ; 不透明度:1 ; 變換:規(guī)模(1.5); -webkit-transform:scale(1.5); -moz-transform:scale(1.5); -ms-transform:scale(1.5); -o-transform:scale(1.5); } .cloud-2 { left: - 100px ; 底部: - 50px ; z-index:999 ; 不透明度:。5 ; 變換:旋轉(zhuǎn)(7deg); -webkit-transform:rotate(7deg); -moz-transform:rotate(7deg); -ms-transform:rotate(7deg); -o-transform:rotate(7deg); } .cloud-3 { left:120px ; 底部: - 50px ; z-index:999 ; 不透明度:。1 ; transform:rotate(-10deg); -webkit-transform:rotate(-10deg); -moz-transform:rotate(-10deg); -ms-transform:rotate(-10deg); -o-transform:rotate(-10deg); } .circle { position:absolute; border-radius:50% ; 背景:#fff ; } .circle-1 { width:100px ; 身高:100px ; 上: - 50px ; 左:10px ; } .circle-2 { width:150px ; 身高:150px ; 上: - 50px ; 左:30px ; } .circle-3 { width:300px ; 身高:300px ; 上: - 100px ; 左:80px ; } .circle-4 { width:200px ; 身高:200px ; 上: - 60px ; 左:300px ; } .circle-5 { width:80px ; 身高:80px ; 上: - 30px ; 左:450px ; } .circle-6 { width:200px ; 身高:200px ; 上: - 50px ; 左:500px ; } .circle-7 { width:100px ; 身高:100px ; 上: - 10px ; 左:650px ; } .circle-8 { width:50px ; 身高:50px ; 上:30px ; 左:730px ; } .circle-9 { width:100px ; 身高:100px ; 上:30px ; 左:750px ; } .circle-10 { width:150px ; 身高:150px ; 上:10px ; 左:800px ; } .circle-11 { width:150px ; 身高:150px ; 上: - 30px ; 左:850px ; } .circle-12 { width:250px ; 身高:250px ; 上: - 50px ; 左:900px ; } .circle-13 { width:200px ; 身高:200px ; 上: - 40px ; 左:1000px ; } .circle-14 { width:300px ; 身高:300px ; 上: - 70px ; 左:1100px ; }
JS代碼:
//流星動(dòng)畫 setInterval(function() { const obj = addChild(“#sky”,“p”,2,“star”); for(let i = 0 ; i{ obj.parent.removeChild(obj.children [I]); } }) } }); } },1000); //閃爍星星動(dòng)畫 setInterval(function() { const obj = addChild(“#stars”,“p”,2,“blink”); for(let i = 0 ; i 封裝方法:
// -------------------------------------------動(dòng)畫---- ----------------------------------------------- //運(yùn)動(dòng)動(dòng)畫,調(diào)用Tween.js // ele:dom | 班級| id | 標(biāo)簽節(jié)點(diǎn)| 類名| id名| 標(biāo)簽名,只支持選擇一個(gè)節(jié)點(diǎn),類類名以及標(biāo)簽名只能選擇頁面中第一個(gè) // attr:屬性屬性名 //值:目標(biāo)值目標(biāo)值 //時(shí)間:持續(xù)時(shí)間持續(xù)時(shí)間 //補(bǔ)間:定時(shí)function函數(shù)方程 // flag:Boolean判斷是按值移動(dòng)還是按位置移動(dòng),默認(rèn)按位置移動(dòng) // fn:callback回調(diào)函數(shù) //增加返回值:將內(nèi)部參數(shù)對象返回,可以通過設(shè)置返回對象的屬性stop為true打斷動(dòng)畫 函數(shù) requestAnimation(obj) { // -------------------------------------參數(shù)設(shè)置--------------------------------------------- //默認(rèn)屬性 const參數(shù)= { ele:null, attr:null, value:null, time:1000, tween:“l(fā)inear”, flag:true, stop:false, fn:“” } //合并傳入屬性 Object .assign(parameter,obj); //覆蓋重名屬性 // -------------------------------------動(dòng)畫設(shè)置--------- ------------------------------------ //創(chuàng)建運(yùn)動(dòng)方程初始參數(shù),方便復(fù)用 let start = 0 ; //用于保存初始時(shí)間戳 let target =(typeof parameter.ele === “string”?document .querySelector(parameter.ele):parameter.ele),//目標(biāo)節(jié)點(diǎn) attr = parameter.attr,//目標(biāo)屬性 beginAttr = parseFloat(getComputedStyle(target)[attr]),// attr起始值 value = parameter.value,//運(yùn)動(dòng)目標(biāo)值 count = value - beginAttr,//實(shí)際運(yùn)動(dòng)值 time = parameter.time,//運(yùn)動(dòng)持續(xù)時(shí)間, tween = parameter.tween,//運(yùn)動(dòng)函數(shù) flag = parameter.flag, callback = parameter.fn,//回調(diào)函數(shù) curVal = 0 ; //運(yùn)動(dòng)當(dāng)前值 //判斷傳入函數(shù)是否為數(shù)組,多段運(yùn)動(dòng) (function() { if(attr instanceof Array){ beginAttr = []; count = []; 對于(讓我的 ATTR){ 常量 VAL = parseFloat(的getComputedStyle(目標(biāo))[I]); beginAttr.push(VAL); count.push(value - val); } } if(value instanceof Array){ for(let i in value){ count [i] = value [i] - beginAttr [i]; } } })(); //運(yùn)動(dòng)函數(shù) 功能 動(dòng)畫(時(shí)間戳) { 如果(parameter.stop)返回 ; //打斷 //存儲(chǔ)初始時(shí)間戳 if(!start)start = timestamp; //已運(yùn)動(dòng)時(shí)間 讓 t =時(shí)間戳 - 開始; //判斷多段運(yùn)動(dòng) if(beginAttr instanceof Array){ // const len = beginAttr.length //存數(shù)組長度,復(fù)用 //多段運(yùn)動(dòng)第1類 - 多屬性,同目標(biāo),同時(shí)間/不同時(shí)間 if(typeof count === “number”){ //同目標(biāo) //同時(shí)間 if(typeof time === “number”){ if(t> time)t = time; //判斷是否超出目標(biāo)值 //循環(huán)attr,分別賦值 為(let i in beginAttr){ if(flag)curVal = Tween [tween](t,beginAttr [i],count,time); //調(diào)用Tween,返回當(dāng)前屬性值,此時(shí)計(jì)算方法為移動(dòng)到 寫入位置else curVal = Tween [tween](t,beginAttr [i],count + beginAttr [i],time); //調(diào)用Tween,返回當(dāng)前屬性值,此時(shí)計(jì)算方法為移動(dòng)了 寫入距離if(attr [i] === “opacity”)target.style [attr [i]] = curVal; //給屬性賦值 else target.style [attr [i]] = curVal + “px” ; //給屬性賦值 if(t