これらのスクリプトを使用して、コンテンツをフェードインし、margin-right 0 を 4 番目のアイテムにして、グレー色のホバーを実行しています。
$(document).ready(function(){
$("div.item:nth-child(4n+4)").css("margin-right", "0px");
});
$(document).ready(function(){
$("#main").hide().fadeIn();
});
$(document).ready(function(){
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});
});
問題は、「ポートフォリオ」または「acerca」ページ (特に「acerca」セクションのテキスト) をロードすると、フェードインの前にメイン コンテンツがジャンプすることです。