gpt4 book ai didi

php - 带有鼠标悬停问题的 Jquery 滑动框

转载 作者:太空宇宙 更新时间:2023-11-04 04:41:29 25 4
gpt4 key购买 nike

因为我正在尝试使用 jQuery 鼠标悬停效果为我的游戏缩略图实现滑动框和字幕。每当我将鼠标悬停在缩略图上时,标题就会出现,而当我移开鼠标指针时,标题就会消失。我已经实现了它,但遇到了小问题。

jQuery 鼠标悬停的问题是,当页面第一次加载时,鼠标悬停在 div 上,但没有将鼠标移到它上面,我不想要,而是每当用户将鼠标指针悬停在缩略图 jquery 效果应该来了。请参阅我下面的代码片段。

引用:( http://www.huzgames.com/ ) 请参阅新游戏部分。

代码:

<!doctype html>
<html>
<head>
<style>
*{ padding:0px; margin:0px; }

a{ color:#00c415; }
h5{
margin: 10px 10px 0 10px;
color:#FFF;
font:13pt Segoe Print;
letter-spacing:-1px;
font-weight: bold; }

.boxgrid{
/*width: 325px;
height: 260px; */
width: 160px;
height: 117px;
margin-top:10px;
margin-left: 4px;
float:left;
background:#161613;

overflow: hidden;
position: relative;
}
.boxgrid img{
position: absolute;
top: 0;
left: 0;
border: 0;
}
.boxgrid p{
padding: 0 10px;
color:#afafaf;
font-weight:bold;
font:10pt "Lucida Grande", Arial, sans-serif;
}

.boxcaption{
float: left;
position: absolute;
background: #000;
height: 117px;
width: 100%;
opacity: .8;
/* For IE 5-7 */
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
/* For IE 8 */
-MS-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.captionfull .boxcaption {
top: 117;
left: 0;
}
.caption .boxcaption {
top: 100;
left: 0;
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.boxgrid.captionfull').hover(function(){
$(".cover", this).stop().animate({top:'1px'},{queue:false,duration:160});
}, function() {
$(".cover", this).stop().animate({top:'117px'},{queue:false,duration:160});
});
});
</script>
</head>
<body>
<div class="boxgrid captionfull">
<img src="path" height="117" width="160" alt="" />
<div class="cover boxcaption">
<h5 align="center">xxxxxxxx</h5>
<p align="center"><a href="#" style="text-decoration:none;font-size:16px; font-family:Wanted M54"><b>Click To Play</b></a></p>
</div>
</div>
</body>
</html>

最佳答案

在你的代码中我编辑了一些东西-

  <script type="text/javascript">
$(document).ready(function(){
$('.cover').hide(this);
$('.boxgrid.captionfull').hover(function(){

$(".cover", this).show().stop().animate({top:'1px'},{queue:false,duration:160});
}, function() {
$(".cover", this).show().stop().animate({top:'117px'},{queue:false,duration:160});
});
});
</script>

这是一个现场 fiddle -

Live example

关于php - 带有鼠标悬停问题的 Jquery 滑动框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15377773/

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