我正在努力做到这一点,以便当我将鼠标悬停在此按钮所在的位置时,它会出现。
这是我的代码
html:
<div class="hide"><button type="button" onmouseover="appear()" id="button">LIGHT!!</button></div>
CSS:
div.appear {display: none;}
javascript:
function appear(){document.getElementById("button").style.display = "block";}