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

jQuery aos.js页面滚动元素动画库

作者/代码整理:  (源码已亲测,不会安装的可以向QQ1915635791要安装视频教程) 发布日期:2022-02-15
jQuery aos.js页面滚动元素动画库
jQuery动画库页面滚动元素动画是一款基于aos.js实现的,该动画库可以在页面滚动时提供28种不同的动画元素展示效果。


js代码

<script src="js/jquery-2.1.1.min.js" type="text/javascript"></script> 
<script src="js/highlight.min.js"></script> 
<script src="dist/aos.js"></script> 
<script>
	AOS.init({
		easing: 'ease-out-back',
		duration: 1000
	});
</script> 
<script>
	hljs.initHighlightingOnLoad();

	$('.hero__scroll').on('click', function(e) {
		$('html, body').animate({
			scrollTop: $(window).height()
		}, 1200);
	});
</script>