Kaedah pelaksanaan: 1. Buat fail html; 2. Tambahkan struktur kod html 3. Gunakan tag div, input dan butang dalam teg badan untuk mereka bentuk kotak paparan kesan, kotak input dan butang penyerahan rentetan; halaman; 4. Tambah tag skrip dan tulis kod js untuk mencapai kesan bertubi-tubi 5. Lihat kesan reka bentuk melalui pelayar.
Cara melaksanakan fungsi barrage dalam js
Kaedah operasi khusus:
1.
2. Tambahkan struktur kod html dalam fail html.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>弹幕功能</title> </head> <body> </body> </html>
3 Kemudian gunakan teg div, input dan butang dalam teg badan dalam struktur kod HTML untuk mereka bentuk kotak paparan kesan, kotak input dan butang penyerahan rentetan untuk halaman tersebut.
<div id="box" class="box"></div> <input type="text" id="txt" /> <button onclick="send()">发送弹幕</button>
4. Tambah tag skrip dalam teg html dalam struktur html dan tulis kod js untuk mencapai kesan rentetan.
<style> function $(str) { return document.getElementById(str); } function send() { var word = $('txt').value; var span = document.createElement('span'); var top = parseInt(Math.random() * 500) - 20; var color1 = parseInt(Math.random() * 256); var color2 = parseInt(Math.random() * 256); var color3 = parseInt(Math.random() * 256); var color = "rgb(" + color1 + "," + color2 + "," + color3 + ")"; top = top < 0 ? 0 : top; span.style.position = 'absolute'; span.style.top = top + "px"; span.style.color = color; span.style.left = '500px'; span.style.whiteSpace = 'nowrap'; var nub = (Math.random() * 10) + 1; span.setAttribute('speed', nub); span.speed = nub; span.innerHTML = word; $('box').appendChild(span); $('txt').value = ""; } setInterval(move, 200); function move() { var spanArray = $('box').children; for (var i = 0; i < spanArray.length; i++) { spanArray[i].style.left = parseInt(spanArray[i].style.left) - spanArray[i].speed + 'px'; } } </style>
5 Akhirnya, anda boleh membaca fail html melalui pelayar untuk melihat kesan reka bentuk.
Kod contoh lengkap adalah seperti berikut:
弹幕功能 <div id="box" class="box"></div> <input type="text" id="txt" /> <button onclick="send()">发送弹幕</button> <script> function $(str) { return document.getElementById(str); } function send() { var word = $('txt').value; var span = document.createElement('span'); var top = parseInt(Math.random() * 500) - 20; var color1 = parseInt(Math.random() * 256); var color2 = parseInt(Math.random() * 256); var color3 = parseInt(Math.random() * 256); var color = "rgb(" + color1 + "," + color2 + "," + color3 + ")"; top = top < 0 ? 0 : top; span.style.position = 'absolute'; span.style.top = top + "px"; span.style.color = color; span.style.left = '500px'; span.style.whiteSpace = 'nowrap'; var nub = (Math.random() * 10) + 1; span.setAttribute('speed', nub); span.speed = nub; span.innerHTML = word; $('box').appendChild(span); $('txt').value = ""; } setInterval(move, 200); function move() { var spanArray = $('box').children; for (var i = 0; i < spanArray.length; i++) { spanArray[i].style.left = parseInt(spanArray[i].style.left) - spanArray[i].speed + 'px'; } } </script>
Atas ialah kandungan terperinci Bagaimana untuk melaksanakan fungsi barrage dalam js. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!