在简书中如何引用代码

算啦,先看图


3806983-6a7f15520d7c431c[1].gif

实现效果:
图片自动轮播,鼠标移入停止,移出继续轮播
点击左右按钮实现切换
点击下标焦点实现切换
1、首先实现无缝滚动:
效果:


3806983-2fd60db3f19f07e1[1].gif

原理:
让ul里的第一个 li 和最后一个 li 内容相同;

通过改变left值,让ul在box中移动;
当移动到最后一个的时候,在让ul回到其实位置;


3806983-adfa4db3c943772e[1].png

代码实现:
window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"1255494d3a","applicationID":"15702971","transactionName":"e1daR0JWVV9RER9ZWkxdRxxDUVZE","queueTime":5,"applicationTime":62,"agent":""}

 
window.NREUM||(NREUM={}),__nr_require=function(e,t,n){function r(n){if(!t[n]){var o=t[n]={exports:{}};e[n][0].call(o.exports,function(t){var o=e[n][1][t];return r(o||t)},o,o.exports)}return t[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o
轮播图—纯js(javascript)实现: - 简书

/* Copyright 2014 Evernote Corporation. All rights reserved. */.en-markup-crop-options { top: 18px !important; left: 50% !important; margin-left: -100px !important; width: 200px !important; border: 2px rgba(255,255,255,.38) solid !important; border-radius: 4px !important;}.en-markup-crop-options div div:first-of-type { margin-left: 0px !important;}

<!DOCTYPE html>
<html
lang
="en"
>
<head
>
<meta
charset
="UTF-8"
>
<title
>
无缝滚动</title
>
</head
>
<style
type
="text/css"
>
 *{ margin
: 0
; padding
: 0
; } .box
{ background
: red; width
: 600px
; height
: 300px
; overflow
: hidden; margin
:100px
auto; position
: relative; } img
{ width
: 600px
; height
: 300px
; vertical-align
: top;/*取消底边的3px */
} ul
{ width
: 500%
; height
: 300px
; list-style
: none; position
: absolute; left
: 0
; top
: 0
; } li
{ float
: left; }
</style
>
<body
>
<div
class
="box"
id
="box"
>
<ul
id
="inner-box"
>
<li
>
<img
src
="banner/banner1.jpg"
>
</li
>
<li
>
<img
src
="banner/banner2.jpg"
>
</li
>
<li
>
<img
src
="banner/banner3.jpg"
>
</li
>
<li
>
<img
src
="banner/banner4.jpg"
>
</li
>
<li
>
<img
src
="banner/banner1.jpg"
>
</li
>
</ul
>
<ol
class
=""
>
<li
class
="current"
>
1</li
>
<li
>
2</li
>
<li
>
3</li
>
<li
>
4</li
>
<li
>
5</li
>
</ol
>
</div
>
</body
>
<script
type
="text/javascript"
>
 var
oBox = document
.getElementById("box"
); var
oUl = document
.getElementById("inner-box"
); var
a = 0
; //定义一个变量用于设置left值
var
timer = null
; //定义一个计时器
var
target = 500
; timer = setInterval(autoPlay,10
);// 定义计时器每25毫秒执行一次
function
autoPlay
(
)
{ //执行每次执行函数,left值减1
a--; a <= -400
? a = 0
:a; oUl.style.left = a+"%"
; } oBox.onmouseover = function
(
)
{ //移出时清除计时器
clearInterval(timer); } oBox.onmouseout=function
(
)
{ //移入时开始计时器
timer = setInterval(autoPlay,10
); }
</script
>
</html
>

2、加入缓冲的匀速运动:
原里:改变每次变化的速度

3806983-8b04bf0bbb19165b[1].gif

代码实现

window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"1255494d3a","applicationID":"15702971","transactionName":"e1daR0JWVV9RER9ZWkxdRxxDUVZE","queueTime":5,"applicationTime":62,"agent":""}

 
window.NREUM||(NREUM={}),__nr_require=function(e,t,n){function r(n){if(!t[n]){var o=t[n]={exports:{}};e[n][0].call(o.exports,function(t){var o=e[n][1][t];return r(o||t)},o,o.exports)}return t[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o
轮播图—纯js(javascript)实现: - 简书

/* Copyright 2014 Evernote Corporation. All rights reserved. */.en-markup-crop-options { top: 18px !important; left: 50% !important; margin-left: -100px !important; width: 200px !important; border: 2px rgba(255,255,255,.38) solid !important; border-radius: 4px !important;}.en-markup-crop-options div div:first-of-type { margin-left: 0px !important;}

<!DOCTYPE html>
<html
lang
="en"
>
<head
>
<meta
charset
="UTF-8"
>
<title
>
缓冲无缝滚动</title
>
</head
>
<style
type
="text/css"
>
* { margin
: 0
; padding
: 0
;}.box
{ background
: red; width
: 600px
; height
: 300px
; overflow
: hidden; margin
: 100px
auto; position
: relative;}img
{ width
: 600px
; height
: 300px
; vertical-align
: top; /*取消底边的3px */
}ul
{ width
: 500%
; height
: 300px
; list-style
: none; position
: absolute; left
: 0
; top
: 0
;}li
{ float
: left;}
</style
>
<body
>
<div
class
="box"
id
="box"
>
<ul
id
="inner-box"
>
<li
>
<img
src
="banner/banner1.jpg"
>
</li
>
<li
>
<img
src
="banner/banner2.jpg"
>
</li
>
<li
>
<img
src
="banner/banner3.jpg"
>
</li
>
<li
>
<img
src
="banner/banner4.jpg"
>
</li
>
<li
>
<img
src
="banner/banner1.jpg"
>
</li
>
</ul
>
</div
>
</body
>
<script
type
="text/javascript"
>
var
oBox = document
.getElementById("box"
);var
oUl = document
.getElementById("inner-box"
);var
cur = 0
; //定义一个变量用于设置left值
var
timer = null
; //定义一个计时器
var
target = 0
;timer = setInterval(autoPlay, 2000
); // 定义计时器每25毫秒执行一次
function
autoPlay
(
)
{ //执行每次执行函数,left值减1
if
(target <= -400
) { cur = 0
; target = -100
; } else
{ target -= 100
; } var
timer1 = null
; timer1 = setInterval(autoPlay, 30
); //设置定时器每30毫秒执行一次
function
autoPlay
(
)
{ if
(cur == target) { clearInterval(timer1) //大于目标值时,清空计时器
} else
{ speed = (target - cur) / 7
; //计算速度
speed = speed > 0
? Math
.ceil(speed) : Math
.floor(speed); //取整
cur = cur + speed; oUl.style.left = cur + "%"
; } }}oBox.onmouseover = function
(
)
{ //移出时清除计时器
clearInterval(timer);}oBox.onmouseout = function
(
)
{ //移入时开始计时器
timer = setInterval(autoPlay, 2000
);}
</script
>
</html
>

3、添加左右点击按钮
效果:

3806983-db0b9f0c118cc712[1].gif

难点:


3806983-e570d358d7e13bc4[1].png
window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"1255494d3a","applicationID":"15702971","transactionName":"e1daR0JWVV9RER9ZWkxdRxxDUVZE","queueTime":5,"applicationTime":62,"agent":""}

 
window.NREUM||(NREUM={}),__nr_require=function(e,t,n){function r(n){if(!t[n]){var o=t[n]={exports:{}};e[n][0].call(o.exports,function(t){var o=e[n][1][t];return r(o||t)},o,o.exports)}return t[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o
轮播图—纯js(javascript)实现: - 简书

/* Copyright 2014 Evernote Corporation. All rights reserved. */.en-markup-crop-options { top: 18px !important; left: 50% !important; margin-left: -100px !important; width: 200px !important; border: 2px rgba(255,255,255,.38) solid !important; border-radius: 4px !important;}.en-markup-crop-options div div:first-of-type { margin-left: 0px !important;}

<!DOCTYPE html>
<html
lang
="en"
>
<head
>
<meta
charset
="UTF-8"
>
<title
>
缓冲无缝滚动</title
>
</head
>
<style
type
="text/css"
>
* { margin
: 0
; padding
: 0
;}.box
{ background
: red; width
: 600px
; height
: 300px
; overflow
: hidden; margin
: 100px
auto; position
: relative;}img
{ width
: 600px
; height
: 300px
; vertical-align
: top; /*取消底边的3px */
}ul
{ width
: 500%
; height
: 300px
; list-style
: none; position
: absolute; left
: 0
; top
: 0
;}li
{ float
: left;}.btn
span
{ width
: 30px
; height
: 50px
; background
: #4a4a4a
; display
: inline-block; position
: absolute; text-align
: center; line-height
: 50px
; font-size
: 24px
; opacity
: 0.4
; cursor
: pointer;}.btn
span
:hover
{ opacity
: 1
; color
: #fff
;}.btn
.left
{ left
: 0
; top
: 125px
;}.btn
.right
{ right
: 0
; top
: 125px
;}
</style
>
<body
>
<div
class
="box"
id
="box"
>
<ul
id
="inner-box"
>
<li
>
<img
src
="banner/banner1.jpg"
>
</li
>
<li
>
<img
src
="banner/banner2.jpg"
>
</li
>
<li
>
<img
src
="banner/banner3.jpg"
>
</li
>
<li
>
<img
src
="banner/banner4.jpg"
>
</li
>
<li
>
<img
src
="banner/banner1.jpg"
>
</li
>
</ul
>
<div
class
="btn"
>
<span
class
="left"
id
="left"
>
<</span
>
<span
class
="right"
id
="right"
>
></span
>
</div
>
</div
>
</body
>
<script
type
="text/javascript"
>
var
oBox = document
.getElementById("box"
);var
oUl = document
.getElementById("inner-box"
);var
oLeft = document
.getElementById("left"
);var
oRight = document
.getElementById("right"
);var
cur = 0
; //定义一个变量用于设置left值
var
timer = null
; //定义一个计时器
var
target = 0
;var
timer1 = null
;timer = setInterval(autoPlay, 2000
); // 定义计时器每25毫秒执行一次
function
autoPlay
(
)
{ //执行每次执行函数,left值减1
if
(target <= -400
) { cur = 0
; target = -100
; } else
{ target -= 100
; } sport(target);}oRight.onclick = function
(argument
)
{ if
(target <= -400
) { cur = 0
; target = -100
; } else
{ target -= 100
; } sport(target);} oLeft.onclick = function
(argument
)
{ if
(target > -100
) { cur -= 400
; target = -300
; } else
{ target += 100
; } sport(target);} function
sport
(tar
)
{ clearInterval(timer1); timer1 = setInterval(autoPlay, 30
); //设置定时器每30毫秒执行一次
function
autoPlay
(
)
{ if
(cur == tar) { clearInterval(timer1) //大于目标值时,清空计时器
} else
{ speed = (tar - cur) / 7
; //计算速度
speed = speed > 0
? Math
.ceil(speed) : Math
.floor(speed); //取整
cur = cur + speed; oUl.style.left = cur + "%"
; } }}oBox.onmouseover = function
(
)
{ //移出时清除计时器
clearInterval(timer);}oBox.onmouseout = function
(
)
{ //移入时开始计时器
timer = setInterval(autoPlay, 2000
);}
</script
>
</html
>

4、添加底部焦点:
效果:在最上头;一开始的地方


3806983-edf1eba4b3bd823f[1].gif

代码实现:

window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"1255494d3a","applicationID":"15702971","transactionName":"e1daR0JWVV9RER9ZWkxdRxxDUVZE","queueTime":5,"applicationTime":62,"agent":""}

 
window.NREUM||(NREUM={}),__nr_require=function(e,t,n){function r(n){if(!t[n]){var o=t[n]={exports:{}};e[n][0].call(o.exports,function(t){var o=e[n][1][t];return r(o||t)},o,o.exports)}return t[n].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o
轮播图—纯js(javascript)实现: - 简书

/* Copyright 2014 Evernote Corporation. All rights reserved. */.en-markup-crop-options { top: 18px !important; left: 50% !important; margin-left: -100px !important; width: 200px !important; border: 2px rgba(255,255,255,.38) solid !important; border-radius: 4px !important;}.en-markup-crop-options div div:first-of-type { margin-left: 0px !important;}

<!DOCTYPE html>
<html
lang
="en"
>
<head
>
<meta
charset
="UTF-8"
>
<title
>
标准轮播图</title
>
</head
>
<style
type
="text/css"
>
* { margin
: 0
; padding
: 0
;}.box
{ width
: 600px
; height
: 300px
; overflow
: hidden; margin
: 100px
auto; position
: relative;}img
{ width
: 600px
; height
: 300px
; vertical-align
: top; /*取消底边的3px */
}ul
{ width
: 500%
; height
: 300px
; list-style
: none; position
: absolute; left
: 0
; top
: 0
;}ul
li
{ float
: left;}.btn
span
{ width
: 30px
; height
: 50px
; background
: #4a4a4a
; display
: inline-block; position
: absolute; text-align
: center; line-height
: 50px
; font-size
: 24px
; opacity
: 0.4
; cursor
: pointer;}.btn
span
:hover
{ opacity
: 1
; color
: #fff
;}.btn
.left
{ left
: 0
; top
: 125px
;}.btn
.right
{ right
: 0
; top
: 125px
;}ol
{ position
: absolute; bottom
: 20px
; left
: 40%
; list-style
: none;}ol
li
{ width
: 10px
; height
: 10px
; border-radius
: 10px
; border
: 1px
solid #fff
; float
: left; margin
: 0
4px
;}
</style
>
<body
>
<div
class
="box"
id
="box"
>
<ul
id
="inner-box"
>
<li
>
<img
src
="banner/banner1.jpg"
>
</li
>
<li
>
<img
src
="banner/banner2.jpg"
>
</li
>
<li
>
<img
src
="banner/banner3.jpg"
>
</li
>
<li
>
<img
src
="banner/banner4.jpg"
>
</li
>
<li
>
<img
src
="banner/banner1.jpg"
>
</li
>
</ul
>
<ol
id
="ol"
>
<li
>
</li
>
<li
>
</li
>
<li
>
</li
>
<li
>
</li
>
</ol
>
<div
class
="btn"
>
<span
class
="left"
id
="left"
>
<</span
>
<span
class
="right"
id
="right"
>
></span
>
</div
>
</div
>
</body
>
<script
type
="text/javascript"
>
var
oBox = document
.getElementById("box"
);var
oUl = document
.getElementById("inner-box"
);var
oLeft = document
.getElementById("left"
);var
oRight = document
.getElementById("right"
);var
cur = 0
; //定义一个变量用于设置left值
var
timer = null
; //定义一个计时器
var
target = 0
;var
timer1 = null
;var
i = 0
;timer = setInterval(autoPlay, 2000
); // 定义计时器每25毫秒执行一次
function
autoPlay
(
)
{ //执行每次执行函数,left值减1
if
(target <= -400
) { cur = 0
; target = -100
; } else
{ target -= 100
; } sport(target); btnBottom();}oRight.onclick = function
(argument
)
{ if
(target <= -400
) { cur = 0
; target = -100
; } else
{ target -= 100
; } sport(target); btnBottom();} oLeft.onclick = function
(argument
)
{ if
(target > -100
) { cur -= 400
; target = -300
; } else
{ target += 100
; } sport(target); btnBottom();} // 增加下标显示效果
btnBottom(i)function
btnBottom
(
)
{ i = -(target/100
); i == 4
? i = 0
: i; var
oOl = document
.getElementById("ol"
); var
oLi = oOl.getElementsByTagName("li"
); for
( j=0
; j<oLi.length ; j++){ oLi[j].style.background = ''
; } oLi[i].style.background = '#fff'
;}// 加点击事件
var
oOl = document
.getElementById("ol"
);var
oLi = oOl.getElementsByTagName("li"
);for
( j=0
; j<oLi.length ; j++){ oLi[j].index = j oLi[j].onclick = function
(
)
{ target = -(this
.index*100
); sport(target); btnBottom() }}function
sport
(tar
)
{ clearInterval(timer1); timer1 = setInterval(autoPlay, 30
); //设置定时器每30毫秒执行一次
function
autoPlay
(
)
{ if
(cur == tar) { clearInterval(timer1) //大于目标值时,清空计时器
} else
{ speed = (tar - cur) / 7
; //计算速度
speed = speed > 0
? Math
.ceil(speed) : Math
.floor(speed); //取整
cur = cur + speed; oUl.style.left = cur + "%"
; } }}oBox.onmouseover = function
(
)
{ //移出时清除计时器
clearInterval(timer);}oBox.onmouseout = function
(
)
{ //移入时开始计时器
timer = setInterval(autoPlay, 2000
);}
</script
>
</html
>

百度云链接:[http://pan.baidu.com/s/1mi14ijY
密码:d84v

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,464评论 25 707
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,019评论 4 62
  • 内容抽屉菜单ListViewWebViewSwitchButton按钮点赞按钮进度条TabLayout图标下拉刷新...
    皇小弟阅读 46,706评论 22 664
  • 今日的感悟就说两个简短的故事。 1 小男生前两天跟我分享一件事。他们换了英语老师,第一节课时,A同学坐得很端正,一...
    秋秋絮语阅读 407评论 2 3
  • 一部我的前半生炸出了好多话题,微博上论坛上每天讨论得热闹至极,很多人看着看着就弃剧了,也有人边看边骂地继续追着。人...
    罗罗啊阅读 182评论 0 1