//「.gallery-item」のhoverによる説明の表示/非表示
$('.gallery-item').hover(
function(){
$(this).children('.gallery-cover').fadeIn();
},
function(){
$(this).children('.gallery-cover').fadeOut();
}
);
//SNSボタンのアニメーション
$('.sns-list').find('li').hover(
function(){
$(this).animate({'font-size':'20px'});
},
function(){
$(this).animate({'font-size':'14px'});
}
);
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.