注册 登录 充值会员 退出
毕业设计 PHP源码
充值

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

作者/代码整理:  (转载请附加本文地址,带有“懒人原生”字样的谢绝转载) 发布日期:2017-05-18
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>