gpt4 book ai didi

html - css 悬停背景重复不起作用

转载 作者:行者123 更新时间:2023-11-28 08:34:35 27 4
gpt4 key购买 nike

我已完成播放弹出式 youtube 视频。现在我正在努力悬停图像部分。我需要,当悬停图像时,它应该显示不透明的播放按钮。

所以我试过:

.youTubeVideo:hover {
opacity:0.5;
background-color:#ffffff;
}
.videoThum:hover{
background-image:url('playbutton.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}

现在,当悬停时,不透明度只起作用,图像没有显示。但如果我删除不重复,它会显示播放按钮。

Live example on the jsFiddle

最佳答案

将此添加到您的 CSS:

Live example with your code.

.videoThum:hover{
background-image:url('http://www.californiagrinders.com/images/playbutton.png');
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: top center;
}

关于html - css 悬停背景重复不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28106973/

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