이 기사의 예에서는 마우스를 슬라이드한 후 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 프로그래밍 설계에 도움이 되기를 바랍니다.