私はhttp://www.gablabelle.comでウェブサイトを構築しています。画像のサムネイルをクリックすると、フェードアウトする前にちらつきます...しかし、これはGoogle Chromeのみであり、FirefoxやSafariではありません。
これを引き起こす可能性があるのは何ですか?この問題を解決する方法はありますか?
<div id="streamwrapper">
<div id="sidebar">
</div>
<div id="stream">
<article id="509">
<a class="ajaxed" href="#"><img src="#" alt="" /></a>
</article>
</div>
</div>
..。
$("a.ajaxed").on("click",function(event) {
event.preventDefault();
postid = $(this).parent().attr("id");
$("#streamwrapper").fadeOut(1000, function(){
$.ajax({
type: "POST",
dataType: "JSON",
url: ajax_object.ajaxurl,
data: ({
action : "get_all_images",
post_id: postid
}),
success:function(data){
$("#post-container").append(data);
},
error:function(data){
console.log(data);
}
});
});
return false;
});