原生js实现随机点餐效果
网络编程 2021-07-04 15:02www.168986.cn编程入门
一款十分简单的原生js实现的随机点菜代码,点击点菜按钮随机点取上面菜单的菜品,可根据需求改成自己需要功能,比如说随机点名。感兴趣的朋友来参考实现代码吧
html:
<div class="wrap">
<div id="box">
</div>
<button id="start">开始</button>
<button id="s">停止</button>
css:
.wrap{
width: 500px;
height: 400px;
margin: 0 auto;
text-align: center;
}
#box{
width: 100%;
height: 300px;
border: 1px solid red;
text-align: center;
line-height: 300px;
font-size: 30px;
margin-bottom: 20px;
}
js:
var arr = ['宫保鸡丁', '糖醋里脊', '红烧带鱼', '牛腩煲', '红烧肉'];
var start = document.getElementById("start"),
s = document.getElementById("s"),
box = document.getElementById("box"),
timer = null;
start.onclick = function(){
timer = setInterval(function(){
var index = Math.floor(Math.random()arr.length);
box.innerHTML = arr[index];
}, 100)
}
s.onclick = function(){
clearInterval(timer);
}
效果
点击开始,随机切换菜品,点击停止,好了吃鱼吧
以上所述是长沙网络推广给大家介绍的原生js实现随机点餐效果,希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!
如果你觉得本文对你有帮助,欢迎网络推广网站推广转载,烦请注明出处,谢谢!