我正在尝试实现在wookmark上看到的相同的鼠标悬停图像效果,我假设这是通过一些 jquery 和 css 魔法完成的。有没有什么好的教程可以展示这是如何完成的?
浏览 jquery 文档,我似乎需要像这样使用悬停:
$("li.preview").hover(function(e){
// show and hide come css magic
});
不知道去哪里使用它的CSS部分......
我正在尝试实现在wookmark上看到的相同的鼠标悬停图像效果,我假设这是通过一些 jquery 和 css 魔法完成的。有没有什么好的教程可以展示这是如何完成的?
浏览 jquery 文档,我似乎需要像这样使用悬停:
$("li.preview").hover(function(e){
// show and hide come css magic
});
不知道去哪里使用它的CSS部分......
您可以在图像周围创建一个包装器,在该包装器内,您可以拥有想要在悬停时出现/消失的按钮。然后在图像悬停时显示/隐藏这些按钮。
HTML --
<span class="image-wrapper">
<span class="image-options"></span>
<img src="..." />
</span>
CSS——
.image-wrapper {
position : relative;
display : inline-block;
}
.image-wrapper .image-options {
position : absolute;
top : 0;
right : 0;
left : 0;
height : 25px;
z-index : 2;
display : none;
}
.image-wrapper:hover .image-options {
display : block;
}
您还可以使用 CSS3 淡入/淡出选项元素:
.image-wrapper {
position : relative;
display : inline-block;
}
.image-wrapper img {
position : relative;
}
.image-wrapper .image-options {
position : absolute;
top : 0;
right : 0;
left : 0;
height : 25px;
z-index : 2;
background : grey;
border : 1px solid black;
opacity : 0;
filter : alpha(opacity=0);
-webkit-transition : opacity 0.25s linear;
-moz-transition : opacity 0.25s linear;
-ms-transition : opacity 0.25s linear;
-o-transition : opacity 0.25s linear;
transition : opacity 0.25s linear;
}
.image-wrapper:hover .image-options {
opacity : 1;
filter : alpha(opacity=100);
}
这是一个仅使用 CSS 的演示:http: //jsfiddle.net/fJsJb/
当然,您可以使用 JS 实现淡化:
$('.image-wrapper').on('mouseenter', function () {
$(this).children('.image-options').stop().fadeIn(250);
}).on('mouseleave', function () {
$(this).children('.image-options').stop().fadeOut(250);
});
这是一个使用 JS 的演示:http: //jsfiddle.net/fJsJb/1/
更新
您还可以通过为属性设置动画来创建幻灯片动画,top
如下所示:
.image-wrapper {
position : relative;
display : inline-block;
overflow : hidden;
}
.image-wrapper img {
position : relative;
}
.image-wrapper .image-options {
position : absolute;
top : -25px;
right : 0;
left : 0;
height : 25px;
z-index : 2;
background : grey;
border : 1px solid black;
-webkit-transition : top 0.25s linear;
-moz-transition : top 0.25s linear;
-ms-transition : top 0.25s linear;
-o-transition : top 0.25s linear;
transition : top 0.25s linear;
}
.image-wrapper:hover .image-options {
top : 0;
}
这是一个演示:http: //jsfiddle.net/fJsJb/2/
你可以像这样使用css。
<style>
.imageBox { float:left; width:100px; height:100px; position:relative; background:#000; overflow:hidden; }
.imageBox .imageActions { position:absolute; top:0; left:0; width:100%; height:40px; background:#999; display:none; }
.imageBox img { width:100%; }
.imageBox:hover .imageActions { display:block; }
</style>
<div class="imageBox">
<div class="imageActions "></div>
<img src=".." />
</div>