gpt4 book ai didi

html - 如何使图像仅在我将鼠标悬停在其上时出现

转载 作者:行者123 更新时间:2023-11-28 04:15:41 24 4
gpt4 key购买 nike

我希望我的图像仅在我将鼠标悬停在图像上时出现,我尝试将其放入样式部分但没有成功。这个代码对吗?

<style type=“text/css”>
img{opacity: 0;}
img:hover{opacity: 1;}
</style>

最佳答案

您使用了错误类型的引号。

“text/css” 更改为 "text/css"

不正确

<style type=“text/css”>
img {
opacity: 0;
}

img:hover {
opacity: 1;
}
</style>

正确

<style type="text/css">
img {
opacity: 0;
}

img:hover {
opacity: 1;
}
</style>

关于html - 如何使图像仅在我将鼠标悬停在其上时出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58332054/

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