js用拖动滑块来控制图片大小的方法


Posted in Javascript onFebruary 27, 2015

本文实例讲述了js用拖动滑块来控制图片大小的方法。分享给大家供大家参考。具体实现方法如下:

<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>

<head>

<meta http-equiv=Content-Type content="text/html;charset=gb2312">

<title>js拖动滑块控制图片显示大小</title>

<style>

*{margin:0;padding:0;font-size:12px;}

.btn{width:50px;height:15px;cursor:pointer;}

#picViewPanel{margin:5 50 0 50px; width:328px; height:248px;overflow:auto;text-align:center;border:solid 1px #cccccc;}

#slider{margin:0 50px;height:15px;width:328px;border:1px solid #000000;position:relative;}

#sliderLeft{height:13px; width:13px;float:left;border:1px solid #cccccc;cursor:pointer;}

#sliderBlock{height:13px;width:50px;border:1px solid #cccccc;position:absolute;top:0;left:113px;cursor:pointer;background:#cccccc;text-align:center;}

#sliderRight{height:13px;width:13px;float:right;border:1px solid #cccccc;cursor:pointer;}

</style>

</head>

<body>

<div id="picViewPanel"></div>

<div id="slider">

<span id="sliderLeft" ><<</span>

<span id="sliderRight">>></span>

<span id="sliderBlock">==</span>

</div>

</body>

<script>

//golbal

var pv = null;

var sd = null;

window.onload=function(){

pv = new PicView("/images/m01.jpg");

sd = new Slider(

function(p){

document.getElementById("sliderBlock").innerHTML = 2*p +"%";

pv.expand(2*p/100);

},function(){});

}

var PicView = function(url,alt){

this.url=url;

this.obj=null;

this.alt=alt?alt:"";

this.realWidth=null;

this.realHeight=null;

this.zoom=1;

this.init();

}

PicView.prototype.init=function(){

var _img=document.createElement("img");

_img.src = this.url;

_img.alt = this.alt;

_img.style.zoom = this.zoom;

document.getElementById("picViewPanel").appendChild(_img);

this.obj=_img;

this.realWidth=_img.offsetWidth;

this.realHeight=_img.offsetHeight;

}

PicView.prototype.reBind=function(){

this.obj.style.width =  this.realWidth*this.zoom+"px";

this.obj.style.height = this.realHeight*this.zoom+"px";

//this.obj.style.zoom = this.zoom;

}

PicView.prototype.expand=function(n){

this.zoom=n;

this.reBind();

}

var Slider = function(ing,ed){

this.block=document.getElementById("sliderBlock");

this.percent = 0;

this.value = 0;

this.ing = ing;

this.ed = ed;

this.init();

}

Slider.prototype.init=function(){

var _sx=0;

var _cx=0;

var o=this.block;

var me=this;

o.onmousedown=function(e){

var e=window.event||e;

_sx = o.offsetLeft;

_cx = e.clientX-_sx;

document.body.onmousemove=move;

document.body.onmouseup=up;

};

function move(e){

var e=window.event||e;

var pos_x = e.clientX - _cx;

pos_x=pos_x<13?13:pos_x;

pos_x=pos_x>248+15-50?248+15-50:pos_x;

o.style.left =  pos_x+"px";

me.percent=(pos_x-13)/2;

me.ing(me.percent);

}

function up(){

document.body.onmousemove=function(){};

document.body.onmouseup=function(){};

}

}

</script>

</html>

希望本文所述对大家的javascript程序设计有所帮助。

Javascript 相关文章推荐
基于jQuery的的一个隔行变色,鼠标移动变色的小插件
Jul 06 Javascript
jquery多选项卡效果实例代码(附效果图)
Mar 23 Javascript
js中的hasOwnProperty和isPrototypeOf方法使用实例
Jun 06 Javascript
jQuery实现dialog设置focus焦点的方法
Jun 10 Javascript
jQuery+json实现的简易Ajax调用实例
Dec 14 Javascript
jQuery插件HighCharts实现2D柱状图、折线图的组合多轴图效果示例【附demo源码下载】
Mar 09 Javascript
Angular中$broadcast和$emit的使用方法详解
May 22 Javascript
jQuery EasyUI 选项卡面板tabs的使用实例讲解
Dec 25 jQuery
angularjs实现分页和搜索功能
Jan 03 Javascript
微信小程序按钮去除边框线分享页面功能
Aug 27 Javascript
100行代码实现一个vue分页组功能
Nov 06 Javascript
微信小程序实现watch监听
Jun 04 Javascript
javascript中局部变量和全局变量的区别详解
Feb 27 #Javascript
对比分析AngularJS中的$http.post与jQuery.post的区别
Feb 27 #Javascript
JavaScript中Function详解
Feb 27 #Javascript
JS实现图片产生波纹一样flash效果的方法
Feb 27 #Javascript
js实现鼠标触发图片抖动效果的方法
Feb 27 #Javascript
javascript实现当前页导航激活的方法
Feb 27 #Javascript
jquery 根据name名获取元素的value值
Feb 27 #Javascript
You might like
40个迹象表明你还是PHP菜鸟
2008/09/29 PHP
用PHP实现小写金额转换大写金额的代码(精确到分)
2012/01/10 PHP
mysqli_set_charset和SET NAMES使用抉择及优劣分析
2013/01/13 PHP
js面向对象 多种创建对象方法小结
2012/05/21 Javascript
js 定时器setTimeout无法调用局部变量的解决办法
2013/11/28 Javascript
jquery使整个div区域可以点击的方法
2015/06/24 Javascript
jQuery Easyui DataGrid点击某个单元格即进入编辑状态焦点移开后保存数据
2016/08/15 Javascript
学习vue.js条件渲染
2016/12/03 Javascript
vue3.0 CLI - 2.3 - 组件 home.vue 中学习指令和绑定
2018/09/14 Javascript
JS实现的进制转换,浮点数相加,数字判断操作示例
2019/11/09 Javascript
Angular 多模块项目构建过程
2020/02/13 Javascript
Vue Cli3 打包配置并自动忽略console.log语句的方法
2020/04/23 Javascript
jQuery+ajax实现用户登录验证
2020/09/13 jQuery
[49:08]FNATIC vs Infamous 2019国际邀请赛小组赛 BO2 第二场 8.16
2019/08/18 DOTA
python中从str中提取元素到list以及将list转换为str的方法
2018/06/26 Python
Python3爬虫学习之爬虫利器Beautiful Soup用法分析
2018/12/12 Python
Flask框架工厂函数用法实例分析
2019/05/25 Python
Python自动化运维之Ansible定义主机与组规则操作详解
2019/06/13 Python
python的pygal模块绘制反正切函数图像方法
2019/07/16 Python
python监控nginx端口和进程状态
2019/09/06 Python
Python 如何测试文件是否存在
2020/07/31 Python
Python自动巡检H3C交换机实现过程解析
2020/08/14 Python
学生如何注册Pycharm专业版以及pycharm的安装
2020/09/24 Python
CSS3地图动态实例代码(圆圈向外扩散)
2018/06/15 HTML / CSS
加拿大时尚少女服装品牌:Garage
2016/10/10 全球购物
UNDONE手表官网:世界领先的定制手表品牌
2018/11/13 全球购物
写clone()方法时,通常都有一行代码,是什么?
2012/10/31 面试题
三月学雷锋月活动总结
2014/04/28 职场文书
民族团结先进集体事迹材料
2014/05/22 职场文书
教师师德师风整改措施
2014/10/24 职场文书
离婚起诉书怎么写
2015/05/19 职场文书
2015年学校总务工作总结
2015/07/20 职场文书
运动会广播稿200字
2015/08/19 职场文书
一年之计:2019年下半年的计划
2019/05/07 职场文书
Nginx配置80端口访问8080及项目名地址方法解析
2021/03/31 Servers
详解Vue的列表渲染
2021/11/20 Vue.js