 
						在页面中引入jquery和TweenMax.min.js,以及ScrollToPlugin.min.js文件。
返回顶部小火箭的HTML结构如下:
| 1 2 3 4 5 | <divid="shangxia2">  <spanid="gotop">    <imgsrc="img/huojian.svg"alt="返回顶部小火箭">  </span></div> | 
为小火箭添加必要的CSS样式:定位方式为fixed,位置固定在页面的右下角。然后在鼠标滑过小火箭时,为小火箭添加rubberBand的animation动画,该动画通过transform函数来对小火箭进行3D缩放。
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | /* 小火箭css */#gotop1{    width: 80px;    position: fixed;    bottom: 90px;    cursor: pointer;    z-index: 99998;    right: 50%;    margin-right: -620px;} /* 小火箭悬停特效 */ #gotop1:hover {    animation: rubberBand 1s;} @keyframes rubberBand {  from {    transform: scale3d(1, 1, 1);  }   30%{    transform: scale3d(1.25, 0.75, 1);  }   40%{    transform: scale3d(0.75, 1.25, 1);  }   50%{    transform: scale3d(1.15, 0.85, 1);  }   65%{    transform: scale3d(.95, 1.05, 1);  }   75%{    transform: scale3d(1.05, .95, 1);  }   to {    transform: scale3d(1, 1, 1);  }} | 
在页面DOM元素加载完毕之后,通过下面的方法来初始化该返回顶部特效。
| 1 2 3 4 5 6 7 | $("#gotop").click(function(e) {   TweenMax.to(window, 1.5, {scrollTo:0, ease: Expo.easeInOut});   varhuojian = newTimelineLite();    huojian.to("#gotop1", 1, {rotationY:720, scale:0.6, y:"+=40", ease:  Power4.easeOut})    .to("#gotop1", 1, {y:-1000, opacity:0, ease:  Power4.easeOut}, 0.6)    .to("#gotop1", 1, {y:0, rotationY:0, opacity:1, scale:1, ease: Expo.easeOut, clearProps: "all"}, "1.4");}); | 
特别申明:
			本站所有资源都是由网友投稿发布,或转载各大下载站,请自行检测软件的完整性!
			本站所有资源仅供学习与参考,请勿用于商业用途,否则产生的一切后果将由您自己承担!
			如有侵权请联系我们删除下架,联系方式:lei1294551502@163.com