gpt4 book ai didi

html - 在单独按钮悬停时更改图像的不透明度

转载 作者:行者123 更新时间:2023-11-28 12:14:43 25 4
gpt4 key购买 nike

#menu{
opacity: 0;
margin: 100px auto;
background-color: #edf4da;
border-style: solid;
border-width: 1px;
border-color: #c4efb6;
width: 600px;
height: 300px;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}

.shadow{
box-shadow: 0px 0px 5px #888888;
}


#startButton{
opacity: 0.5;
margin: 20px auto;
background-color: #54fb8d;
border-style: solid;
border-width: 1px;
border-color: #c4efb6;
width: 90px;
height: 40px;
-webkit-border-radius: 7x;
-moz-border-radius: 7px;
border-radius: 7px;
}



#startButton:hover #menu{ /*this is where I am having a problem*/
opacity: 1;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
}

////////HTML////

<!DOCTYPE html>
<html>
<head>
<title>Ubiquity</title>
<link rel="stylesheet" href="style.css">
</head>

<body>

<div id="menuwbutton">
<div id="menu">
</div>
<div id="startButton">
</div>
</div>

</body>

</html>

当我将鼠标悬停在#startButton 上时,我希望#menu 的不透明度发生变化。我已经搜索过,但没有找到有关此主题的任何信息。如果已经有人问过这个问题,你能给我一个链接吗?谢谢!

最佳答案

我会在 Javascript 中执行此操作。示例 jQuery 代码:

$("#startButton").hover(function(){
$("#menu").fadeTo(500,1);
}, function(){
$("#menu").fadeTo(500,0);
});

只是因为 jQuery 很有趣

或者这样的东西,这样你就可以使用菜单了:

$("#startButton").hover(function(){
$("#menu").fadeTo("500", 1);
}, function(){});

$("#menu").hover(function(){}, function() {
$("#menu").fadeTo("500", 0);
});

关于html - 在单独按钮悬停时更改图像的不透明度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19261841/

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