用点击事件做红绿灯2

Posted ruhai

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用点击事件做红绿灯2相关的知识,希望对你有一定的参考价值。

点击事件红绿灯

<!doctype html>
<html lang=zh>
<head>
    <meta charset="UTF-8">
    <title>红绿灯</title>
    <style>
        .c1 
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 3px solid black;
        
        .bg_red 
            background-color: red;
        
        .bg_green 
            background-color: green;
        
    </style>
</head>
<body>
<div class="c1   bg_red bg_green"></div>
<button id = 'b1'> change color </button>



<script >
let b1Ele = document.getElementById('b1');
b1Ele.onclick = function () 
    let dEle = document.getElementsByClassName('c1')[0];
    dEle.classList.toggle('bg_green');
    ;


</script>
</body>
</html>

以上是关于用点击事件做红绿灯2的主要内容,如果未能解决你的问题,请参考以下文章

android:来自片段的菜单项单击事件

Android:将片段和弹出窗口的点击事件中生成的变量传递给活动的方法

为啥片段中的晶圆厂不响应点击事件?

原生js如何绑定a连接点击事件?

arduino怎么做一个呼吸灯

通过event事件来控制红绿灯通行车辆