手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jQuery实现的原图对比窗帘效果
jQuery实现的原图对比窗帘效果
摘要:效果:HTML代码:复制代码代码如下:JS代码:复制代码代码如下:$(function(){//外DIVvarimageWrap=$('.v...

效果:

HTML代码:

复制代码 代码如下:

<div class="vfx-image-wrap special">

<div class="before-image" style="width: 50%; transition: all 0.3s ease 0s;">

<img src="js/VFX-before.jpg">

</div>

<div class="after-image">

<img src="js/VFX-after.jpg">

</div>

<div class="divider-bar" style="left: 50%; transition: all 0.3s ease 0s;"></div>

</div>

JS代码:

复制代码 代码如下:

$(function () {

//外DIV

var imageWrap = $('.vfx-image-wrap'),

//前景图

topImage = $(this).find('.before-image'),

//分割线

divider = $(this).find('.divider-bar'),

stayBounce = $('.toggle-function');

imageWrap.on("mousemove", function (e) {

// Gotta localize top image and divider so it only applies to this

var offsets = $(this).offset(),

fullWidth = $(this).width(),

mouseX = e.pageX - offsets.left,

topImage = $(this).find('.before-image'),

divider = $(this).find('.divider-bar');

if (mouseX < 0) {

mouseX = 0;

} else if (mouseX > fullWidth) {

mouseX = fullWidth

}

$(this).addClass('special');

divider.css({ left: mouseX, transition: 'none' });

topImage.css({ width: mouseX, transition: 'none' });

});

stayBounce.click(function(){

$(this).toggleClass('stay');

});

imageWrap.on("mouseleave", function () {

if (!stayBounce.hasClass('stay')) {

divider.css({ left: '50%', transition: 'all .3s' });

topImage.css({ width: '50%', transition: 'all .3s' });

}

});

});

【jQuery实现的原图对比窗帘效果】相关文章:

JQuery实现动态添加删除评论的方法

js实现精美的图片跟随鼠标效果实例

jQuery实现返回顶部功能

jQuery判断指定id的对象是否存在的方法

jQuery实现首页图片淡入淡出效果的方法

JS实现模拟风力的雪花飘落效果

javascript实现链接单选效果

JavaScript实现带标题的图片轮播特效

jQuery实现延迟跳转的方法

jQuery实现自动滚动到页面顶端的方法

精品推荐
分类导航