html5 totop,Vue实现一个返回顶部backToTop组件

最近在学习VUE。自己就在研究怎么用VUE实现一个组件的封装,今日就算留个笔记

前言

返回顶部这个功能用jq实现,好容易实现,一个animate配合scrollTo就搞定了

今天我们来试试vue封装一个原生js实现的返回顶部;

写起来够呛,借助github,看了别人的gist,稍微封装了下;

当然不是用scrollTo直接调位那种,没有过渡效果怎么说得过去!!还是捣鼓出来了.

废话不多说,看效果图…

2017072514432030.gif?2017625144337

实现思路

过渡用的是requestAnimationFrame,这货只支持IE10+,所以必须做兼容

滚动视图是window.pageYOffset,这货支持IE9+;

为了让可控性更强,图标采用iconfont,具体瞅代码

你能学到什么?

学到一些页面计算相关的东东

动画API的一些知识

Vue封装组件相关知识和生命周期和事件监听销毁相关知识的运用

实现功能

视图默认在350处显示返回顶部的按钮和图标

提示文字和颜色,在图标上下左右的自定义,字段都限制了格式和默认值

图标颜色和形状,大小的自定义,字段都限制了格式和默认值

过渡动效的自定义,用法:scrollIt(0,1500,'easeInOutCubic',callback);

返回到视图的point,也就是滚动到哪里

过渡时间(ms级别)

一堆过渡效果,字符串格式,其实就是滚动的计算函数..

当然少不了默认参数了,除了callback

兼容性是IE9+,特意开了虚拟机去尝试

scrollIt.js –过渡滚动实现

SEOutQuad(t) {

return t * (2 - t);

},// acceleration until halfway,then deceleration

easeInOutQuad(t) {

return t < 0.5 ? 2 * t * t : -1 + (4 - 2 * t) * t;

},// accelerating from zero velocity

easeInCubic(t) {

return t * t * t;

},// decelerating to zero velocity

eaSEOutCubic(t) {

return --t * t * t + 1;

},then deceleration

easeInOutCubic(t) {

return t < 0.5 ? 4 * t * t * t : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1;

},// accelerating from zero velocity

easeInQuart(t) {

return t * t * t * t;

},// decelerating to zero velocity

eaSEOutQuart(t) {

return 1 - --t * t * t * t;

},then deceleration

easeInOutQuart(t) {

return t < 0.5 ? 8 * t * t * t * t : 1 - 8 * --t * t * t * t;

},// accelerating from zero velocity

easeInQuint(t) {

return t * t * t * t * t;

},// decelerating to zero velocity

eaSEOutQuint(t) {

return 1 + --t * t * t * t * t;

},then deceleration

easeInOutQuint(t) {

return t < 0.5 ? 16 * t * t * t * t * t : 1 + 16 * --t * t * t * t * t;

}

};

// requestAnimationFrame()的兼容性封装:先判断是否原生支持各种带前缀的

//不行的话就采用延时的方案

(function() {

var lastTime = 0;

var vendors = ["ms","moz","webkit","o"];

for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {

window.requestAnimationFrame =

window[vendors[x] + "RequestAnimationFrame"];

window.cancelAnimationFrame =

window[vendors[x] + "CancelAnimationFrame"] ||

window[vendors[x] + "CancelRequestAnimationFrame"];

}

if (!window.requestAnimationFrame)

window.requestAnimationFrame = function(callback,element) {

var currTime = new Date().getTime();

var timeToCall = Math.max(0,16 - (currTime - lastTime));

var id = window.setTimeout(function() {

callback(currTime + timeToCall);

},timeToCall);

lastTime = currTime + timeToCall;

return id;

};

if (!window.cancelAnimationFrame)

window.cancelAnimationFrame = function(id) {

clearTimeout(id);

};

})();

function checkElement() {

// chrome,safari及一些浏览器对于documentElemnt的计算标准化,reset的作用

document.documentElement.scrollTop += 1;

let elm =

document.documentElement.scrollTop !== 0

? document.documentElement

: document.body;

document.documentElement.scrollTop -= 1;

return elm;

}

let element = checkElement();

let start = element.scrollTop; // 当前滚动距离

let startTime = Date.now(); // 当前时间

function scroll() { // 滚动的实现

let now = Date.now();

let time = Math.min(1,(now - startTime) / duration);

let timeFunction = easingseasing;

element.scrollTop = timeFunction * (destination - start) + start;

if (element.scrollTop === destination) {

callback; // 此次执行回调函数

return;

}

window.requestAnimationFrame(scroll);

}

scroll();

}

backToTop.vue

.back-to-top {

position: fixed;

bottom: 5%;

right: 100px;

z-index: 9999;

cursor: pointer;

width: auto;

i {

font-size: 32px;

display: inline-block;

position: relative;

text-align: center;

padding: 5px;

background-color: rgba(234,231,0.52);

border-radius: 5px;

transition: all 0.3s linear;

&:hover {

border-radius: 50%;

background: #222;

color: #fff !important;

}

}

.tips {

display: inline-block;

position: absolute;

word-break: normal;

white-space: nowrap;

width: auto;

font-size: 12px;

color: #fff;

z-index: -1;

}

.left {

right: 0;

top: 50%;

margin-right: 50px;

transform: translateY(-50%);

}

.right {

left: 0;

top: 50%;

margin-left: 50px;

transform: translateY(-50%);

}

.bottom {

bottom: 0;

margin-top: 50px;

}

.top {

top: 0;

margin-bottom: 50px;

}

}

总结

从心血来潮到折腾出来,为了兼顾兼容性和拓展性,好像几个小时了.

不过实现了.你再搬到其他语言,类似ng4,也就是十来分钟的事情,

思路会了,实现更多的是写法而已,至于性能优化,可以一边写一边考虑,也可以实现后有空再优化.

希望对大家的学习有所帮助,也希望大家多多支持编程之家。

总结

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。

小编个人微信号 jb51ccc

喜欢与人分享编程技术与工作经验,欢迎加入编程之家官方交流群!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值