js面向对象的使用方法
标准用法:
function Sprite(){
//函数内容部设置属性
this.name='shimily';
}
//原型上设置方法
Sprite.prototype.show=function(){
console.log(this.name);
}
//【尽量不要在原型上面添加公共属性】
//公共的属性或常量可以在原型上面设置
Sprite.prototype.PI=3.1415926;
var s = new Sprite();
s.show();
改进用法:
改进用法一:*************************
function Sprite2(name,age){
//函数内容部设置属性
this.name=name;
this.age=age;
}
//原型上设置方法
Sprite2.prototype.show=function(){
console.log(this.name);
} var s2 = new Sprite2('shimily1314',20);
s2.show();
改进方法二:*******************
function Sprite3(options){
//函数内容部设置属性
this.name=options.name;
this.age=options.age;
}
//原型上设置方法
Sprite3.prototype.show=function(){
console.log(this.name);
}
var s3 = new Sprite3({
name:'shimilygood',
age:20
});
s3.show();
最终常用方法:***************
function Sprite4(options){
//函数内容部设置属性
this._init(options);
} Sprite4.prototype._init=function(options){
this.name=options.name;
this.age=options.age;
this.color=options.color;
}
//原型上设置方法
Sprite4.prototype.show=function(){
console.log(this.name);
} var s4 = new Sprite4({
name:'shimilygood123',
age:20
});
s4.show();
【最好、最常用】
最终【优化版】常用方法:***************
function Sprite5(options){
//函数内容部设置属性
this._init(options);
} Sprite5.prototype={
_init:function(options){ //只允许内部调用的方法【仅内部调用】
this.name=options.name;
this.age=options.age || 20;
this.color=options.color || 'red';
console.log(this.name);
},
show:function(ele){ //[可以不加参数]外部可以调用的方法不使用下划线
console.log(this.name + ele);
} };
var s5 = new Sprite5({
name:'shimilygoodabc',
age:20
});
s5.show('yang');
王伟峰,图片轮播开发案例格式*******挺好用的
function Slider(container, opts){ //属性设置
this.$outer = $(container);
this.$inner = this.$outer.children();
this.$prev = $(opts.prev);
this.$next = $(opts.next);
this.$els = this.$inner.children();
this.total = this.$els.length;
this.w = this.$els.outerWidth(true);
this.timer = null;
this.isSliding = false;
this.autoplay = opts.autoplay || false;
this.init(); //对外接口
}
var proto = Slider.prototype; //原型中封装方法
proto.init = function(){
var self = this;
var $last = this.$els.eq(this.total-1);
if(this.total<6){
$last = this.$els.clone().appendTo(this.$inner).eq(this.total-1);
this.total *= 2;
}
$last.prependTo(this.$inner);
this.$inner.css('marginLeft', -this.w);
console.log(this.$next)
this.$prev.on('click', function(){
self.prev();
})
this.$next.on('click', function(){
self.next();
})
this.$outer.on('mouseenter', function(){
clearTimeout(self.timer);
})
this.$outer.on('mouseleave', function(){
self.auto();
})
this.auto();
}
proto.prev = function(){
if(this.isSliding) return;
this.isSliding = true;
var self = this;
this.$inner.animate({
marginLeft: 0
}, 500, function(){
self.$inner.children().eq(self.total-1).prependTo(self.$inner);
self.$inner.css('marginLeft', -self.w);
self.isSliding = false;
})
}
proto.next = function(){
if(this.isSliding) return;
this.isSliding = true;
var self = this;
this.$inner.animate({
marginLeft: -this.w*2
}, 500, function(){
self.$inner.children().eq(0).appendTo(self.$inner);
self.$inner.css('marginLeft', -self.w);
self.isSliding = false;
})
}
proto.auto = function(){
if(!this.autoplay) return;
var self = this;
function delay(){
self.timer = setTimeout(function(){
self.next();
delay();
}, 5000)
}
delay();
} //实例化
new Slider('.slideOuter',{
prev: '.prev',
next: '.next',
autoplay: true
});
js面向对象的使用方法的更多相关文章
- js面向对象 多种创建对象方法小结
转自js面向对象 多种创建对象方法小结 1.对象字面量 var clock={ hour:12, minute:10, second:10, showTime:function(){ alert(th ...
- js面向对象的封装方法,【案例】
封装方法: /** * @矩形canvas库 * @authors Shimily (275766400@qq.com) * @date 2016-12-28 10:30:51 * @version ...
- JS面向对象(3) -- Object类,静态属性,闭包,私有属性, call和apply的使用,继承的三种实现方法
相关链接: JS面向对象(1) -- 简介,入门,系统常用类,自定义类,constructor,typeof,instanceof,对象在内存中的表现形式 JS面向对象(2) -- this的使用,对 ...
- js面向对象+一般方法的选项卡
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- js面向对象之公有、私有、静态属性和方法详解
现下,javascript大行其道,对于网站开发人员来说,javascript是必需掌据的一门语言,但随着jquery等框架的流行和使用,许多人对于原生javascript缺乏深入的理解,习惯了函数式 ...
- js面向对象自定义MyString()的构造器函数,实现内建String()属性和方法:
js面向对象自定义MyString()的构造器函数,实现内建String()属性和方法: var s = new MyString('hello'); s.length; s[0]; // " ...
- JS面向对象编程,对象,属性,方法。
document.write('<script type="text/javascript" src="http://api.map.baidu.com/api?v ...
- js面向对象初步探究(上) js面向对象的5种写方法
非常长一段时间看网上大神的JS代码特别吃力.那种面向对象的写法方式让人看得云里来雾里去.于是就研究了一下JS面向对象.因为是初学,就将自己在网上找到的资料整理一下,作为记忆. js面向对象的5种写方法 ...
- JavaScript---正则使用,日期Date的使用,Math的使用,JS面向对象(工厂模式,元模型创建对象,Object添加方法)
JavaScript---正则使用,日期Date的使用,Math的使用,JS面向对象(工厂模式,元模型创建对象,Object添加方法) 一丶正则的用法 创建正则对象: 方式一: var reg=new ...
随机推荐
- [课程设计]Scrum 3.6 多鱼点餐系统开发进度(用户测试反馈页面构思&留言板设计)
Scrum 3.6 多鱼点餐系统开发进度(用户测试反馈页面构思&留言板设计) 1.团队名称:重案组 2.团队目标:长期经营,积累客户充分准备,伺机而行 3.团队口号:矢志不渝,追求完美 4.团 ...
- 简述id,instancetype和__kindof的区别
id: 好处:可以调用任何对象方法 坏处:不能进行编译检查 + (id)person; instancetype 好处:自动识别当前类的对象 坏处:不会提示返回的类型 + (instancetype) ...
- SeleniumIDE从0到1 (Selenium IDE 录制)
seleniumIDE安装成功后下面我们用百度网址来简单录制下: 简介一:百度输入框录制操作 1.打开SeleniumIDE 2.SeleniumIDE地址栏中输入百度网址:[https://www. ...
- zigbee学习之路(十三):基于协议栈的Usart 实验
一.前言 这次实验我们来学习基于zigbee的串口通信实验,揭开zigbee神秘的面纱,让大家可以用zigbee协议编制属于自己的程序,这次实验只是串口发送数据,并没有进行无线的数据传输,为的是使大家 ...
- 大数据 > 数据平台方案评估
分类 当前措施 说明 百度竞价如何进行数据分析(SEM工程师)数据来源: 1. 百度后台推广数据:api 总展现 总点击 点击率 总消费 点击均价 BDP功能点 1. 串联百度->网站商务通-& ...
- 【前端】Three.js
Three.js 基本概念 渲染器(Renderer) 渲染器将和Canvas元素进行绑定 场景(Scene) 在Three.js中添加的物体都是添加到场景中的,因此它相当于一个大容器.一般说,场景里 ...
- OpenLayers元素选择工具
OpenLayers的selector工具相信挺多人都没有用过,其实这个工具用处还是不少的.比如完成元素查询时,需要实现图属性联动,使用这个工具很方便.最近做项目时也使用到这个工具,使用起来确实挺方便 ...
- 使用jquery实现搜索框的位置变换
现在很多的网站都存在这样一个效果:当用户搜索信息后,滚动内容时,搜索框的位置会产生变化,会固定在某个位置,方便用户进行再次搜索.比如百度图片.为了提高系统用户体验,也想加入这个效果,经过小段时间摸索, ...
- css的小技巧
前几天看到<css揭秘>这本书,第一感觉是 css怎么能出这么厚的一本书,不过 细细一想,用好css真的可以实现很多想要的效果,节省很多js代码. 总结几个css的小技巧: 1,将所有元素 ...
- HTML5 CANVAS 实现图片压缩和裁切
原文地址:http://leonshi.com/2015/10/31/html5-canvas-image-compress-crop/?utm_source=tuicool&utm_medi ...