注册 登录 充值会员 退出
网站、APP、小程序等定制开发,联系QQ 1206995177 毕业设计 java源码 PHP源码
充值

jQuery页面上下滚动触发区块动画特效

作者/代码整理:  (源码已亲测,不会安装的可以向QQ1915635791要安装视频教程) 发布日期:2022-06-05
jQuery页面上下滚动触发区块动画特效
一款jQuery实现的当页面向下或向上滚动时,网页触发区块动画特效,很有弹性的动感效果。


js代码

<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
<script src="dist/scrolla.jquery.min.js"></script>
<script>

$('.animate').scrolla({
	mobile: false,
	once: false
});

$('#button-show-window').click(function() {
	var template = $('#modal-template').html();
	$('body').append(template);
	$('.animate').scrolla('bind');
	$('section.modal .modal-close').click(function() {
		$(this).closest('section.modal').remove();
	});

	return false;
});

</script>