本文實例講述了jquery實現滑鼠滑過後動態圖片提示效果。分享給大家供大家參考。具體如下:
這裡jquery實現的滑鼠懸停圖片提示效果,把滑鼠放在圖片上的時候,圖片向右上角滑動並縮小,同時提示顯示出來,類似幻燈片一樣的效果,推薦給大家學習借鑒。
運作效果截圖如下:
具體程式碼如下:
<!DOCTYPE html> <head> <title>jQuery图片动态信息显示幻灯效果</title> <style> .galleryContainer {width: 1024px;} .galleryImage { background-color:black; width:325px; height:260px; overflow:hidden; margin:5px; float:left;} .info { margin-left:10px; font-family:arial;padding:3px;} .info h2 { color:gray;} .info p { color:white} .clear { clear:both; margin-top:10px;} </style> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $('.galleryImage').hover( function(){ $(this).find('img').animate({width:100, marginTop:10, marginLeft:10}, 500); }, function(){ $(this).find('img').animate({width:325, marginTop:0, marginLeft:0},300); }); }); </script> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head> <body> <div class="galleryContainer"> <!--galleryEntry--> <div class="galleryImage"> <img src="http://files.jb51.net/file_images/article/201508/2015810102423303.jpg"></img> <div class="info"> <h2>美国农场</h2> <p> 美国农场的大自然美景. </p> </div> </div> <!--end galleryEntry--> <!--galleryEntry--> <div class="galleryImage"> <img src="http://files.jb51.net/file_images/article/201508/2015810102436957.jpg"></img> <div class="info"> <h2>日落黄昏</h2> <p> 美丽的日落,拍摄于2009年10月16日,印度尼西亚。 </p> </div> </div> <!--end galleryEntry--> <!--galleryEntry--> <div class="galleryImage"> <img src="http://files.jb51.net/file_images/article/201508/2015810102445216.jpg"></img> <div class="info"> <h2>欧洲乡野</h2> <p> 沉浸在大自然的寂静里, Tennessee in 2006. </p> </div> </div> <!--end galleryEntry--> </div> </div> </body> </html>
希望本文所述對大家的jquery程式設計有所幫助。