作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这可能是一个简单的答案,但我很难找到它。
我正在使用 masonry 插件用图像填充页面。图片是艺术品。当您将鼠标悬停在他/她的作品图像上时,我希望艺术家的名字从底部向上滑动。
现在我只是想让鼠标悬停事件起作用,但什么也没有发生。请问有人可以帮忙吗?
$(document).ready(function(){
$.get("artists.json", function(data){
json = $.parseJSON(data);
$.each(json, function(i, data){
$("#container").append("<div class='thumbnail small' id='" + data.id + "' index='"+i+"' style=\"background:url('" + data.imageofWork + "') no-repeat center center; background-size:cover; \" caption = '"+data.artistName+"' ></div>");
});
});
$("#container").imagesLoaded( function(){
setTimeout(function()
{
$('#container').masonry({
itemSelector : '.thumbnail',
gutterWidth: 0,
isAnimated: true
});
$("#container").css('visibility','visible').hide().fadeIn('slow', function(){setTimeout(function(){ checkURL();},500)});
},1200)
});
$(document).on("mouseover", ".thumbnail.small", function(){
//console.log($(this));
$(this).css('width:', '110%');
});
最佳答案
你可以用 css 做到这一点......
你的 jquery(来自你的回答)
$("#container").append("<div class='thumbnail small' id='" + data.id + "' index='"+i+"' style=\"background:url('" + data.imageofWork + "') no-repeat center center; background-size:cover; \" ><div id='artistname' style='display: block; visibility: hidden;z-index:1000; font-size: 115%; font-weight: bold; padding: 10px; background-color: #000000; color: #ffffff; opacity: .5;'>"+data.artistName+"</div></div>");
CSS
.thumbnail { height: 200px; width:300px; overflow:hidden; position: relative; }
.thumbnail:hover .artistname { bottom: 0; }
.artistname { padding: 10px; width:100%; background-color: #000000; color: #ffffff; opacity: .5; position:absolute; bottom :-100px; -webkit-transition:all .2s ease-in-out; -moz-transition:all .2s ease-in-out; -o-transition:all .2s ease-in-out; -ms-transition:all .2s ease-in-out; }
我正在使用 css 转换使转换看起来很漂亮,这不适用于 ie 9 和更低版本,但它会优雅地降级。
关于jquery - 将鼠标悬停事件添加到砌体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15571541/
我是一名优秀的程序员,十分优秀!