ホームページ  >  記事  >  ウェブフロントエンド  >  Pictures_jqueryの説明レイヤーを表示するためのマウス移動を実装するJQueryメソッド

Pictures_jqueryの説明レイヤーを表示するためのマウス移動を実装するJQueryメソッド

WBOY
WBOYオリジナル
2016-05-16 15:52:57841ブラウズ

この記事の例では、JQueryを使用して、マウスを移動したときに画像の説明レイヤーを表示する方法を説明します。皆さんの参考に共有してください。詳細は以下の通りです。

これは、JQuery イージング アニメーションと組み合わせて使用​​できます。

メインコードは次のとおりです:

$(".item").hover(
function()
{
//$(this).children("img").stop().animate({opacity: 0.8}, 700, "easeInSine");
$(this).children("div.title").stop().animate({top: 0}, 700, "easeOutBounce");
$(this).children("div.desc").stop().animate({bottom: 0}, 700, "easeOutBounce");
},
function(){
//$(this).children("img").stop().animate({opacity: 1}, 700);
$(this).children("div.title").stop().animate({top: -60}, 500);
$(this).children("div.desc").stop().animate({bottom: -40}, 400);
}
);

この記事が皆さんの jQuery プログラミングに役立つことを願っています。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。