この記事の例では、Web ページの抽選を js で実装する方法を説明します。皆さんの参考に共有してください。詳細は以下の通りです。
この Web ページの抽選プログラムは、JavaScript コードに基づいて実装されています。JS を使用して抽選機能を実装する方法を簡単に説明します。「抽選を開始」ボタンをクリックすると、プログラムが抽選を開始します。停止する必要がある場合は、「」を押します。前に投稿 同様のくじ企画がいくつかありますので、興味のある方は当サイトの特撮コーナーで「くじ」で検索してご覧ください。
操作効果は以下の通りです:
具体的なコードは次のとおりです:
<!DOCTYPE html> <html lang="zh"> <head> <title>抽奖程序</title> <script type="text/javascript"> var randNum=Math.random()*10; function testTime(){ document.getElementById("testtime").innerHTML="<h2>"+Math.floor(Math.random()*10)+"</h2>"; } function setTime(mark){ timer=null; timer=setInterval(testTime,12); if(mark=='stop'){ clearInterval(timer); } return timer; } function clearTime(timer){ } </script> <style type="text/css"> <!-- body {font-family: Arial;color:#fff;margin: 0px;padding: 0px;background:#000;text-align:center;} #happyness{font-size:186px;line-height:186px;margin-top:100px;} --> </style> </head> <body> </body> <button onClick="timer=setInterval(testTime,12);" value="" style="width:100px;height:30px">开始抽奖</button> <button onClick="clearInterval(timer);" value="Stop" style="width:100px;height:30px">停止</button> <div id="testtime" style="font-size:25px"></div> </html>
この記事が皆様の JavaScript プログラミング設計に役立つことを願っています。