gpt4 book ai didi

javascript - 通过 JS 悬停到整个 div

转载 作者:行者123 更新时间:2023-11-28 00:37:49 26 4
gpt4 key购买 nike

当我想悬停到 div 时,它会悬停整个 div

我试图为覆盖设置高度但它丢失了!

<div id="Overlay" onmouseover="hoverDown()" onmouseout="hoverUp()" onload="muteOther()">

#Overlay {
width: 100%;
height: 100%;
position: absolute;
opacity: 0;
}

function hoverUp() {
var a = document.getElementById("Overlay");

a.style.opacity = "0";
a.style.transition = "all 1s";

}

function hoverDown() {
var a = document.getElementById("Overlay");
a.style.opacity = "1";

setTimeout(function () {
a.style.opacity = "0";
a.style.transition = "all 1s";
}, 4000);

}

当l将光标移动到div时它的Overlay出现,当它out时Overlay绝望

最佳答案

尝试在 <script> 中包含 JavaScript标签。此外,您还可以使用 attr_for_div=func(this)func(this)在 js 中 this等于var a=doc... .

关于javascript - 通过 JS 悬停到整个 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54050150/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com