您好,登錄后才能下訂單哦!
這篇文章運用簡單易懂的例子給大家介紹使用JavaScript實現一個刮刮樂效果,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> .outer{ height: 90px; width: 300px; margin: 0 auto; margin-top: 5px; } .box{ height: 70px; width: 70px; background-color: darkgray; line-height: 70px; text-align: center; display: inline-block; margin-left: 5px; } </style> </head> <body> <div class="outer"> <div class="box"></div> <div class="box"></div> <div class="box"></div> </div> <div class="outer"> <div class="box"></div> <div class="box"></div> <div class="box"></div> </div> <div class="outer"> <div class="box"></div> <div class="box"></div> <div class="box"></div> </div> <script> var boxs = document.getElementsByClassName("box"); var item = ["一等獎","二等獎","三等獎","謝謝","謝謝","謝謝","謝謝","謝謝","謝謝",]; for (var i = 0;i<boxs.length;i++){ var box = boxs[i]; box.onclick = function (){ this.style.backgroundColor="red"; //this.innerText="一等獎";//隨即從數組中獲取內容,并且不能重復! var number = Math.floor(Math.random()*9); this.innerText = item[number]; this.style.color = "#fff"; this.style.verticalAlign = "top"; } } </script> </body> </html>
4、這個部分的代碼塊文字內容可以自定義,改寫成你想要顯示的內容
關于使用JavaScript實現一個刮刮樂效果就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。