本文实例讲述了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" alt="jquery实现鼠标滑过后动态图片提示效果实例_jquery" ></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" alt="jquery实现鼠标滑过后动态图片提示效果实例_jquery" ></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" alt="jquery实现鼠标滑过后动态图片提示效果实例_jquery" ></img> <div class="info"> <h2>欧洲乡野</h2> <p> 沉浸在大自然的寂静里, Tennessee in 2006. </p> </div> </div> <!--end galleryEntry--> </div> </div> </body> </html>
希望本文所述对大家的jquery程序设计有所帮助。