js中开关变量使用实例


Posted in Javascript onFebruary 24, 2017

效果图:

js中开关变量使用实例

代码如下:

<!DOCTYPE html>
<html>
 <head>
 <meta charset="UTF-8">
 <title></title>
 <style>
 *{
 margin: 0;
 padding: 0;
 font-family: "微软雅黑";
 }
 #wrap{
 width: 400px;
 height: 500px;
 border: 1px solid #ccc;
 margin: 20px auto;
 position: relative;
 overflow: hidden;
 background: #f1f1f1;
 }
 #wrap a{
 width: 40px;
 height: 50px;
 background:rgba(0,0,0,.4);
 /*border: 1px solid #fff;*/
 position: absolute;
 top: 50%;
 margin-top: -25px;
 text-align: center;
 text-decoration: none;
 line-height: 50px;
 color: white;
 font-size: 30px;
 }
 #wrap a:hover{
 background:rgba(0,0,0,.9);
 }
 #prev{
 left: 10px;
 }
 #next{
 right: 10px;
 }
 #note,#span1{
 position: absolute;
 left: 0;
 width: 400px;
 height: 30px;
 line-height: 30px;
 text-align: center;
 color: white;
 background: rgba(0,0,0,.6);
 }
 #note{
 bottom: 0;
 }
 #span1{
 top: 0;
 }
 #img1{
 width: 400px;
 height: 500px;
 }
 section{
 width: 400px;
 height: 50px;
 margin: 30px auto 0;
 line-height: 50px;
 text-align: center;
 }
 section input{
 padding: 5px 15px;
 margin-right: 10px;
 }
 .pink{
 background: pink;
 color: white;
 }
 </style>
 </head>
 <script>
 window.onload=function(){
 var oPrev=document.getElementById('prev');
 var oNext=document.getElementById('next');
 var oNote=document.getElementById('note');
 var oSpan=document.getElementById('span1');
 var oImg=document.getElementById('img1');
 var arrURL=['https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1488463139&di=af377bee44237b092b20f1f7c86f2eb6&imgtype=jpg&er=1&src=http%3A%2F%2Fwww.wed114.cn%2Fjiehun%2Fuploads%2Fallimg%2F160304%2F52_160304170213_3.jpg','https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1488463080&di=a0ba47cd212e8f5755a2f42738511a2e&imgtype=jpg&er=1&src=http%3A%2F%2Fwww.6a8a.com%2Fuploadfile%2F2017%2F0809%2F2016071617592321137.jpg','https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1488463040&di=f9290db609a0994bdbd7221e644904ba&imgtype=jpg&er=1&src=http%3A%2F%2Fwww.wed114.cn%2Fjiehun%2Fuploads%2Fallimg%2F160405%2F52_160405165047_3.jpg','https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1488462814&di=e1dacd05467c01a13d9eb4d800853f20&imgtype=jpg&er=1&src=http%3A%2F%2Fwww.wed114.cn%2Fjiehun%2Fuploads%2Fallimg%2F160304%2F52_160304160734_5.jpg','https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1487868087852&di=3011f4a2b23b63559c32f8f154ad0a3a&imgtype=0&src=http%3A%2F%2Fwww.wed114.cn%2Fjiehun%2Fuploads%2Fallimg%2F160411%2F52_160411172520_1.jpg'];
 var arrNote=['多肉植物佛珠怎么养 翡翠珠的养殖方法','多肉植物紫弦月的养殖方法','多肉植物球松怎么养 球松的养殖方法','是一种小巧又可爱的 多肉植物','多肉植物蓝松怎么繁殖'];
 var num=0;
 var oBtn=document.getElementsByTagName('input');
 var onOff=true;
 oBtn[0].onclick=function(){
 onOff=true;
 this.className='pink';
 this.nextSibling.className='';
 }
 oBtn[1].onclick=function(){
 onOff=false;
 this.className='pink';
 this.previousSibling.className='';
 }
 function fnTab(){
 oSpan.innerHTML=num+1+'/'+arrURL.length;
 oImg.src=arrURL[num];
 oNote.innerHTML=arrNote[num];
 }
 fnTab();
 oPrev.onclick=function(){
 num--;
 if(num==-1){
  if(onOff){
  num=arrNote.length-1;
  }else{
  alert('已经是第一张图片了,亲!');
  num=0;
  }
 }
 fnTab();
 }
 oNext.onclick=function(){
 num++;
 if(num==arrNote.length){
  if(onOff)
  {
  num=0;
  }else{
  alert('已经是第一张图片了,亲!');
  num=arrNote.length-1;
  }
 }
 fnTab();
 }
 }
 </script>
 <body>
 <section>
 <input type="button" value="循环播放" class="pink"/><input type="button" value="顺序播放" />
 </section>
 <div id="wrap">
 <a href="javascript:;" rel="external nofollow" rel="external nofollow" id="prev"><</a>
 <a href="javascript:;" rel="external nofollow" rel="external nofollow" id="next">></a>
 <p id="note">图片文字加载中......</p>
 <span id="span1">数量正在计算中......</span>
 <img id="img1" />
 </div>
 </body>
</html>

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持三水点靠木!

Javascript 相关文章推荐
用js统计用户下载网页所需时间的脚本
Oct 15 Javascript
JavaScript中常见陷阱小结
Apr 27 Javascript
点击按钮自动加关注的代码(sina微博/QQ空间/人人网/腾讯微博)
Jan 02 Javascript
js获取url中&quot;?&quot;后面的字串方法
May 15 Javascript
推荐8款jQuery轻量级树形Tree插件
Nov 12 Javascript
jQuery选择器全集详解
Nov 24 Javascript
JavaScript实现下拉列表框数据增加、删除、上下排序的方法
Aug 11 Javascript
js设置和获取自定义属性的方法
Oct 20 Javascript
ES6新特性之Object的变化分析
Mar 31 Javascript
webpack 单独打包指定JS文件的方法
Feb 22 Javascript
Vue中Axios从远程/后台读取数据
Jan 21 Javascript
js+canvas实现简单扫雷小游戏
Jan 22 Javascript
angularjs点击图片放大实现上传图片预览
Feb 24 #Javascript
js实现导航吸顶效果
Feb 24 #Javascript
canvas绘制多边形
Feb 24 #Javascript
angularjs实现多张图片上传并预览功能
Feb 24 #Javascript
Angularjs分页查询的实现
Feb 24 #Javascript
vuejs2.0运用原生js实现简单的拖拽元素功能示例
Feb 24 #Javascript
Angular.js实现多个checkbox只能选择一个的方法示例
Feb 24 #Javascript
You might like
DedeCms模板安装/制作概述
2007/03/11 PHP
PHP性能优化工具篇Benchmark类调试执行时间
2011/12/06 PHP
PHP无限分类(树形类)的深入分析
2013/06/02 PHP
PHP身份证校验码计算方法
2016/08/10 PHP
php PDO异常处理详解
2016/11/20 PHP
PHP多种序列化/反序列化的方法详解
2017/06/23 PHP
Yii框架自定义数据库操作组件示例
2019/11/11 PHP
js脚本学习 比较实用的基础
2006/09/07 Javascript
javascript 正则替换 replace(regExp, function)用法
2010/05/22 Javascript
Prototype源码浅析 Enumerable部分(二)
2012/01/18 Javascript
JavaScript自动设置IFrame高度的小例子
2013/06/08 Javascript
JS判断两个时间大小的示例代码
2014/01/28 Javascript
jquery选择符快速提取web表单数据示例
2014/03/27 Javascript
jquery form 隐藏的input 选择
2014/04/29 Javascript
js显示文本框提示文字的方法
2015/05/07 Javascript
jQuery的基本概念与高级编程
2015/05/14 Javascript
JavaScript html5 canvas画布中删除一个块区域的方法
2016/01/26 Javascript
适用于javascript开发者的Processing.js入门教程
2016/02/24 Javascript
Node.js+Express配置入门教程
2016/05/19 Javascript
jQuery表单验证简单示例
2016/10/17 Javascript
node.js基于mongodb的搜索分页示例
2017/01/22 Javascript
解决ionic和angular上拉加载的问题
2017/08/03 Javascript
Python单链表的简单实现方法
2014/09/23 Python
pyinstaller打包多个py文件和去除cmd黑框的方法
2019/06/21 Python
Python Web版语音合成实例详解
2019/07/16 Python
python从list列表中选出一个数和其对应的坐标方法
2019/07/20 Python
TensorFlow设置日志级别的几种方式小结
2020/02/04 Python
小学生暑假感言
2014/02/06 职场文书
大宝sod蜜广告词
2014/03/21 职场文书
房屋租赁协议书范本
2014/04/10 职场文书
活动策划求职信模板
2014/04/21 职场文书
公司演讲稿开场白
2014/08/25 职场文书
教师党员学习群众路线心得体会
2014/11/04 职场文书
处罚决定书范文
2015/06/24 职场文书
乡镇司法所2015年度工作总结
2015/10/14 职场文书
mysql 子查询的使用
2022/04/28 MySQL