これは簡単な答えかもしれませんが、私はそれについて多くを見つけるのに苦労しています.
メーソンリー プラグインを使用して、ページに画像を挿入しています。画像は芸術作品です。アーティストの作品の画像にマウスを合わせると、そのアーティストの名前が下からスライドして表示されるようにしてほしいです。
現在、マウスオーバーイベントを機能させようとしていますが、何も起こっていません。誰でも助けてもらえますか?
$(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%');
});