日期:2014-05-16 浏览次数:20483 次
jQuery.fn.gallery = function(){ return this.each(function(){ var e = $(this); var h = e.height(); e.height(128); e.click(function(){ //show big preview e.clone().height(h).prependTo("body"); }) }) }
<!DOCTYPE HTML> <html> <head> <meta charset="gb2312" /> <title></title> <script src="http://code.jquery.com/jquery-latest.js"></script> <style> </style> </head> <body> <img src="http://avatar.profile.csdn.net/1/7/A/2_prettywhitewolf_xiao.jpg"> <script> jQuery.fn.gallery = function(){ return this.each(function(){ var e = $(this); var h = e.height(); e.height(128); e.click(function(){ //show big preview e.clone().height(h).prependTo("body"); }) }) } window.onload = function(){ $('img').gallery() } </script> </body> </html>