ホームページ > 記事 > ウェブフロントエンド > Pictures_jqueryの説明レイヤーを表示するためのマウス移動を実装するJQueryメソッド
この記事の例では、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 プログラミングに役立つことを願っています。