requireJS模塊化實現(xiàn)返回頂部功能的方法詳解
更新時間:2017年10月16日 12:05:59 作者:抽象思維
這篇文章主要介紹了requireJS模塊化實現(xiàn)返回頂部功能的方法,結合實例形式詳細分析了requireJS的使用步驟及返回頂部功能的相關操作技巧,需要的朋友可以參考下
本文實例講述了requireJS模塊化實現(xiàn)返回頂部功能的方法。分享給大家供大家參考,具體如下:
引用requireJs
<script src="require.js" data-main="main"></script>
html部分
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
body{padding: 0; margin: 0; height: 3000px}
.btn{width: 80px; height: 80px;
position: fixed; bottom: 0; left: 50%; background: #ddd}
</style>
<script src="require.js" data-main="main"></script>
</head>
<body>
<div id="top" class="btn"></div>
</body>
</html>
新建main.js
require.config({
paths:{
jquery:'jquery'
}
});
requirejs(['jquery','backtop'],function($,backtop){
$('#top').backtop({
mode:"move",
pos:100,
dest:500,
speed:20000
})
});
創(chuàng)建backtop模塊 backtop.js
/**
* Created by Administrator on 2016/3/24.
*/
define(["jquery","scrollTo"],function($, scroll){
function backtop(el,opts){
this.opts = $.extend({},backtop.default,opts);
this.$el = $(el);
this.scroll = new scroll.scrollTo({
dest:this.opts.dest,
speed:this.opts.speed
});
this._checkPostion();
if(this.opts.mode == "move"){
this.$el.on("click", $.proxy(this._move,this))
}else{
this.$el.on("click", $.proxy(this._go,this))
}
$(window).on("scroll", $.proxy(this._checkPostion,this))
};
backtop.prototype._move = function(){
this.scroll.move()
};
backtop.prototype._go = function(){
this.scroll.go()
};
backtop.prototype._checkPostion = function(){
if($(window).scrollTop() > this.opts.pos){
this.$el.fadeIn();
}else{
this.$el.fadeOut();
}
}
$.fn.extend({
backtop:function(opts){
return this.each(function(){
new backtop(this,opts);
})
}
});
backtop.default = {
mode:"move",
pos:100,
dest:0,
speed:800
}
return{
backtop:backtop
}
})
backtop 依賴 scrollTo模塊
創(chuàng)建scrollTo.js
define(['jquery'],function($){
function scrollTo(opts){
this.opts = $.extend({},scrollTo.DEFAULTS,opts);
this.$el = $("html,body");
}
scrollTo.prototype.move = function(){
if($(window).scrollTop() != this.opts.dest){
//if(!this.$el.is(":animated")){
this.$el.animate({scrollTop:this.opts.dest},this.opts.speed);
//}
}
};
scrollTo.prototype.go = function(){
this.$el.scrollTop(this.opts.dest)
};
scrollTo.DEFAULTS = {
dest:0,
speed:800
};
return {
scrollTo:scrollTo
}
});
希望本文所述對大家基于requireJS的程序設計有所幫助。
您可能感興趣的文章:
- 在Html中使用Requirejs進行模塊化開發(fā)實例詳解
- 基于RequireJS和JQuery的模塊化編程日常問題解析
- 使用requirejs模塊化開發(fā)多頁面一個入口js的使用方式
- 基于RequireJS和JQuery的模塊化編程——常見問題全面解析
- JavaScript模塊化之使用requireJS按需加載
- 一篇文章掌握RequireJS常用知識
- SeaJS 與 RequireJS 的差異對比
- RequireJS多頁面應用實例分析
- 在JavaScript應用中使用RequireJS來實現(xiàn)延遲加載
- angularJS+requireJS實現(xiàn)controller及directive的按需加載示例
- 一個極為簡單的requirejs實現(xiàn)方法
相關文章
淺談JS中String()與 .toString()的區(qū)別
下面小編就為大家?guī)硪黄獪\談JS中String()與 .toString()的區(qū)別。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2016-10-10

