您好,登錄后才能下訂單哦!
小編給大家分享一下使用html實現(xiàn)流星雨的效果的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
<!doctype html> <html> <head> <meta charset="GB2312" /> <title>流星雨</title> <meta name="keywords" content="關(guān)鍵詞,關(guān)鍵字"> <meta name="description" content="描述信息"> <style> body { margin: 0; overflow: hidden; } </style> </head> <body> <!-- <canvas>畫布 畫板 畫畫的本子 --> <canvas width=400 height=400 style="background:#000000;" id="canvas"></canvas> <!-- javascript 畫筆 --> <script> //獲取畫板 //doccument 當前文檔 //getElement 獲取一個標簽 //ById 通過Id名稱的方式 //var 聲明一片空間 //var canvas 聲明一片空間的名字叫做canvas var canvas = document.getElementById("canvas"); //獲取畫板權(quán)限 上下文 var ctx = canvas.getContext("2d"); //讓畫板的大小等于屏幕的大小 /* 思路: 1.獲取屏幕對象 2.獲取屏幕的尺寸 3.屏幕的尺寸賦值給畫板 */ //獲取屏幕對象 var s = window.screen; //獲取屏幕的寬度和高度 var w = s.width; var h = s.height; //設(shè)置畫板的大小 canvas.width = w; canvas.height = h; //設(shè)置文字大小 var fontSize = 14; //計算一行有多少個文字 取整數(shù) 向下取整 var clos = Math.floor(w/fontSize); //思考每一個字的坐標 //創(chuàng)建數(shù)組把clos 個 0 (y坐標存儲起來) var drops = []; var str = "qwertyuiopasdfghjklzxcvbnm"; //往數(shù)組里面添加 clos 個 0 for(var i = 0;i<clos;i++) { drops.push(0); } //繪制文字 function drawString() { //給矩形設(shè)置填充色 ctx.fillStyle="rgba(0,0,0,0.05)" //繪制一個矩形 ctx.fillRect(0,0,w,h); //添加文字樣式 ctx.font = "600 "+fontSize+"px 微軟雅黑"; //設(shè)置文字顏色 ctx.fillStyle = "#ff2d2d"; for(var i = 0;i<clos;i++) { //x坐標 var x = i*fontSize; //y坐標 var y = drops[i]*fontSize; //設(shè)置繪制文字 ctx.fillText(str[Math.floor(Math.random()*str.length)],x,y); if(y>h&&Math.random()>0.99){ drops[i] = 0; } drops[i]++; } } //定義一個定時器,每隔30毫秒執(zhí)行一次 setInterval(drawString,30); </script> </body> </html>
看完了這篇文章,相信你對使用html實現(xiàn)流星雨的效果的方法有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。