jQuery图片特效插件Revealing实现拉伸放大
来源: 阅读:822 次 日期:2015-04-24 11:25:38
温馨提示: 小编为您整理了“jQuery图片特效插件Revealing实现拉伸放大”,方便广大网友查阅!

本文给大家分享的是jQuery图片展示效果,使用的是jQuery Revealing插件,不点击的情况下,图片整齐排列成一行,当任意一个图片缩略图被点击的时候,该图片就放大显示,当点击关闭按钮时图片又重新还原了缩略图模式。

点击图片,图片拉伸放大显示,效果非常棒!

使用方法:

1、head区域引用文件 jquery.js,photorevealer.js,datouwang.css

2、在文件中加入区域代码

3、图片个数可以自由增减,增加或者删除即可

4、如果图片信息更多,需要更大的空间,可修改photorevealer.js中第36行的数字

核心代码:

?

$(document).ready(function(){

$('.photo_slider').each(function(){

var $this = $(this).addClass('photo-area');

var $img = $this.find('img');

var $info = $this.find('.info_area');

var opts = {};

$img.load(function(){

opts.imgw = $img.width();

opts.imgh = $img.height();

});

opts.orgw = $this.width();

opts.orgh = $this.height();

$img.css ({

marginLeft: "-150px",

marginTop: "-150px"

});

var $wrap = $('

').append($img).prependTo($this);

var $open = $('More Info >').appendTo($this);

var $close = $('Close').appendTo($info);

opts.wrapw = $wrap.width();

opts.wraph = $wrap.height();

$open.click(function(){

$this.animate({

width: opts.imgw,

height: (opts.imgh+30),

borderWidth: "10"

}, 600 );

$open.fadeOut();

$wrap.animate({

width: opts.imgw,

height: opts.imgh

}, 600 );

$(".info_area",$this).fadeIn();

$img.animate({

marginTop: "0px",

marginLeft: "0px"

}, 600 );

return false;

});

$close.click(function(){

$this.animate({

width: opts.orgw,

height: opts.orgh,

borderWidth: "1"

}, 600 );

$open.fadeIn();

$wrap.animate({

width: opts.wrapw,

height: opts.wraph

}, 600 );

$img.animate({

marginTop: "-150px",

marginLeft: "-150px"

}, 600 );

$(".info_area",$this).fadeOut();

return false;

});

});

});

以上所述就是本文的全部代码了,希望大家能够喜欢。

更多信息请查看IT技术专栏

更多信息请查看 脚本栏目
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!
关于我们| 联系我们| 人才招聘| 网站声明| 网站帮助| 非正式的简要咨询| 简要咨询须知| 加入群交流| 手机站点| 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:
咨询QQ:526150442(9:00—18:00) 版权所有:
云南网警报警专用图标
Baidu
map