欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JavaScript實(shí)現(xiàn)流星雨效果的示例代碼

 更新時(shí)間:2022年06月13日 08:25:20   作者:肥學(xué)  
這篇文章主要為大家詳細(xì)介紹了如何利用JavaScript實(shí)現(xiàn)簡易的流星雨的效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

演示

上一次做了一個(gè)雨滴的動(dòng)畫,順著這種思維正好可以改成流星雨,嘿嘿我真是一個(gè)小機(jī)靈。

技術(shù)棧

還是先建立畫布

 <body>
        <canvas id="stars"></canvas>
 </body>

畫布標(biāo)簽我昨天講過了。不知道的小伙伴可以去看看。

源碼

首先建立星星對象

 //創(chuàng)建一個(gè)星星對象
            var Star = function (){
                this.x = windowWidth * Math.random();//橫坐標(biāo)
                this.y = 5000 * Math.random();//縱坐標(biāo)
                this.text=".";//文本
                this.color = "white";//顏色
              
                //產(chǎn)生隨機(jī)顏色
                this.getColor=function(){

                    var _r = Math.random();

                    if(_r<0.5){
                        this.color = "#333";
                    }else{
                        this.color = "white";
                    }

                }

                //初始化
                this.init=function(){
                    this.getColor();
                }
                //繪制
                this.draw=function(){
                    context.fillStyle=this.color;
                    context.fillText(this.text,this.x,this.y);
                }
                
            }

讓星星閃亮起來

        //頁面加載的時(shí)候
            window.onload = function() {

                init();
                //畫星星
                for (var i=0;i<starCount;i++) {
                    var star = new Star();
                    star.init();
                    star.draw();
                    arr.push(star);
                }

                //畫流星
                for (var i=0;i<rainCount;i++) {
				    var rain = new MeteorRain();
				    rain.init();
				    rain.draw();
				    rains.push(rain);
				}

                drawMoon();//繪制月亮
                playStars();//繪制閃動(dòng)的星星
				playRains();//繪制流星

            }

             //星星閃起來
            function playStars(){
                for (var n = 0; n < starCount; n++){  
                    arr[n].getColor();  
                    arr[n].draw();  
                }  

                setTimeout("playStars()",100);
            }

創(chuàng)建流星雨對象

var MeteorRain = function(){
		    this.x = -1;
		    this.y = -1;
		    this.length = -1;//長度
		    this.angle = 30; //傾斜角度
		    this.width = -1;//寬度
		    this.height = -1;//高度
		    this.speed = 1;//速度
		    this.offset_x = -1;//橫軸移動(dòng)偏移量
		    this.offset_y = -1;//縱軸移動(dòng)偏移量
		    this.alpha = 1; //透明度
		    this.color1 = "";//流星的色彩
		    this.color2 = "";  //流星的色彩
    /****************初始化函數(shù)********************/
    this.init = function () //初始化
    {
        this.getPos();
        this.alpha = 1;//透明度
        this.getRandomColor();
        //最小長度,最大長度
        var x = Math.random() * 80 + 150;
        this.length = Math.ceil(x);
//                  x = Math.random()*10+30;
        this.angle = 30; //流星傾斜角
        x = Math.random()+0.5;
        this.speed = Math.ceil(x); //流星的速度
        var cos = Math.cos(this.angle*3.14/180);
        var sin = Math.sin(this.angle*3.14/180) ;
        this.width = this.length*cos ;  //流星所占寬度
        this.height = this.length*sin ;//流星所占高度
        this.offset_x = this.speed*cos ;
        this.offset_y = this.speed*sin;
    }

    /**************獲取隨機(jī)顏色函數(shù)*****************/
    this.getRandomColor = function (){
        var a = Math.ceil(255-240* Math.random()); 
        //中段顏色
        this.color1 = "rgba("+a+","+a+","+a+",1)";
        //結(jié)束顏色
        this.color2 = "black";
    }

讓流星動(dòng)起來

 this.draw = function () //繪制一個(gè)流星的函數(shù)
    {
        context.save();
        context.beginPath();
        context.lineWidth = 1; //寬度
        context.globalAlpha = this.alpha; //設(shè)置透明度
        //創(chuàng)建橫向漸變顏色,起點(diǎn)坐標(biāo)至終點(diǎn)坐標(biāo)
        var line = context.createLinearGradient(this.x, this.y, 
            this.x + this.width, 
            this.y - this.height);

        

        //分段設(shè)置顏色
        line.addColorStop(0, "white");
        line.addColorStop(0.3, this.color1);
        line.addColorStop(0.6, this.color2);
        context.strokeStyle = line;
        //起點(diǎn)
        context.moveTo(this.x, this.y);
        //終點(diǎn)
        context.lineTo(this.x + this.width, this.y - this.height);
        context.closePath();
        context.stroke();
        context.restore();
    }
    this.move = function(){
        //清空流星像素
        var x = this.x+this.width-this.offset_x;
        var y = this.y-this.height;
        context.clearRect(x-3,y-3,this.offset_x+5,this.offset_y+5); 
//                  context.strokeStyle="red";
//                  context.strokeRect(x,y-1,this.offset_x+1,this.offset_y+1);
        //重新計(jì)算位置,往左下移動(dòng)
        this.countPos();
        //透明度增加
        this.alpha -= 0.002;
        //重繪
        this.draw(); 
    }
    
}

以上就是JavaScript實(shí)現(xiàn)流星雨效果的示例代碼的詳細(xì)內(nèi)容,更多關(guān)于JavaScript流星雨的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

最新評論