HTML中如何做图片切换效果,跪求代码

html-css014

HTML中如何做图片切换效果,跪求代码,第1张

1、首先输入代码:

<div class="wrapper">

<div id="focus">

<ul>

<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/01.jpg" alt="QQ商城焦点图效果下载" /></a></li>

2、然后输入代码:

<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/02.jpg" alt="QQ商城焦点图效果教程" /></a></li>

<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/03.jpg" alt="jquery商城焦点图效果" /></a></li>

<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/04.jpg" alt="jquery商城焦点图代码" /></a></li>

3、然后再输入代码:

<li><a href="http://www.lanrentuku.com/" target="_blank"><img src="img/05.jpg" alt="jquery商城焦点图源码" /></a></li>

</ul>

</div>

</div><!-- wrapper end -->

</body>

4、然后就完成了。

<!doctype html>

<html>

<head>

<meta charset="UTF-8">

<title>H5course</title>

<link rel="stylesheet" href="css/reset.css">

<style>

.imgview {

width: 255px

height: 402px

margin: 50px auto

border: 10px solid red

overflow: hidden

}

.imgview img {

width: 255px

height: 402px

}

.imgview-nav {

width: 255px

margin: 10px auto

border: 1px solid red

list-style-type: none

}

.imgview-nav li {

float: left

width: 15px

height: 15px

border: 1px solid blue

margin: 10px

}

span {

display: inline-block

width: 50px

height: 50px

background: #CFC

border-radius: 50%

}

</style>

</head>

<body>

<div class="wrap">

<div class="imgview" id="imgView">

<table cellspacing="0" cellpadding="0">

<tr>

<td><img src="img/1.jpg" alt=""></td>

<td><img src="img/2.jpg" alt=""></td>

<td><img src="img/3.jpg" alt=""></td>

<td><img src="img/4.jpg" alt=""></td>

<td><img src="img/5.jpg" alt=""></td>

<td><img src="img/6.jpg" alt=""></td>

</tr>

</table>

</div>

<ul class="imgview-nav" id="imgviewNav">

<li>1</li>

<li>2</li>

<li>3</li>

<li>4</li>

<li>5</li>

<li>6</li>

</ul>

<span>左边</span>

<span>右边</span>

</div>

<script>

var imgView = document.getElementById('imgView'),

imgWidth = imgView.getElementsByTagName('img'),

btn = document.getElementsByTagName('li'),

len = btn.length,

imgNum = 0,

endPos = 0,

timer = null,

timer2 = null,

conSpan = document.getElementsByTagName('span')

conSpan[0].onclick = function (){

if (timer) {

clearInterval(timer)

}

if (timer2) {

clearInterval(timer2)

}

imgNum--

if (imgNum <0 ) {

imgNum = len

}

timer = setInterval(move, 16)

timer2 = setInterval(autoMove, 3000)

}

conSpan[1].onclick = function (){

if (timer) {

clearInterval(timer)

}

if (timer2) {

clearInterval(timer2)

}

imgNum++

if (imgNum == len ) {

imgNum = 0

}

timer = setInterval(move, 16)

timer2 = setInterval(autoMove, 3000)

}

//绑定事件。添加移动效果

for (var i = 0i <leni++) {

btn[i].index = i

btn[i].onmouseover = function(){

clearInterval(timer2)

imgNum = this.index

if (timer) {

clearInterval(timer)

}

timer = setInterval(move, 16)

}

btn[i].onmouseout = function(){

timer2 = setInterval(autoMove, 2000)

}

}

//图片缓动效果,原理是保持步数不变,改变距离的同时改变速度

function move(){

var starPos = imgView.scrollLeft,

speed

endPos = imgNum * imgWidth[0].offsetWidth

speed = (endPos - starPos) / 20

if (speed == 0) {

clearInterval(timer)

} else if(speed >0){

speed = Math.ceil(speed)

} else {

speed = Math.floor(speed)

}

imgView.scrollLeft = starPos + speed

}

//控制图片的自动滚动,通过控制索引值来控制图片的自动滚动

function autoMove(){

imgNum++

if(imgNum == len) {

imgNum = 0

}

timer = setInterval(move, 20)

}timer2 = setInterval(autoMove, 2000)

</script>

</body>

</html>

html中鼠标点击更换背景图片的方法:

1、html代码:

<div id="menuWrapper" class="menuWrapper bg1">

<ul class="menu" id="menu">

<li class="bg1" style="background-position:0 0">

<a id="bg1" href="#">迈瑞宝</a>

<ul class="sub1" style="background-position:0 0">

<li><a href="#">报价:11.99-23.69万</a></li>

<li><a href="#">车身结构:三箱</a></li>

<li><a href="#">油耗:8.3-12.0L</a></li>

</ul>

</li>

<li class="bg1" style="background-position:-266px 0px">

<a id="bg2" href="#">索纳塔8</a>

<ul class="sub2" style="background-position:-266px 0">

<li><a href="#">报价:13.39-22.59万</a></li>

<li><a href="#">车身结构:三箱</a></li>

<li><a href="#">油耗:9.0-12.0L</a></li>

</ul>

</li>

<li class="last bg1" style="background-position:-532px 0px">

<a id="bg3" href="#">K5</a>

<ul class="sub3" style="background-position:-266px 0">

<li><a href="#">报价:10.88-25.58万</a></li>

<li><a href="#">车身结构:三箱</a></li>

<li><a href="#">油耗:8.4-13.0L</a></li>

</ul>

</li>

</ul>

</div>

2、css代码:

ul.menu >li >a{

float:left

width:265px

height:50px

margin-top:450px

text-align:center

line-height:50px

color:#ddd

background-color:#333

letter-spacing:1px

cursor:pointer

text-decoration:none

text-shadow:0px 0px 1px #fff

}

ul.menu >li ul{

list-style:none

float:left

margin-top:-180px

width:100%

height:110px

padding-top:20px

background-repeat:no-repeat

background-color:transparent

}

ul.menu >li ul li{

display:none

}

ul.menu >li ul.sub1 {

background-image: url('../img/bg1sub.png')

}

ul.menu >li ul.sub2 {

background-image: url('../img/bg2sub.png')

}

ul.menu >li ul.sub3{

background-image:url(../img/bg3sub.png)

}

ul.menu >li ul li a{

color:#fff

text-decoration:none

line-height:30px

margin-left:20px

text-shadow:1px 1px 1px #444

font-size:11px

}

ul.menu >li ul li a:hover{

border-bottom:1px dotted #fff

}

ul.menu >li ul.sub1 li{

display:block

}

3、js代码:

if (!document.defaultView || !document.defaultView.getComputedStyle) { // IE6-IE8

var oldCurCSS = jQuery.curCSS

jQuery.curCSS = function (elem, name, force) {

 if (name === 'background-position') {

  name = 'backgroundPosition'

 }

 if (name !== 'backgroundPosition' || !elem.currentStyle || elem.currentStyle[name]) {

  return oldCurCSS.apply(this, arguments)

 }

 var style = elem.style

 if (!force &&style &&style[name]) {

  return style[name]

 }

 return oldCurCSS(elem, 'backgroundPositionX', force) + ' ' + oldCurCSS(elem, 'backgroundPositionY', force)

}

}

var oldAnim = $.fn.animate

$.fn.animate = function (prop) {

if ('background-position' in prop) {

 prop.backgroundPosition = prop['background-position']

 delete prop['background-position']

}

if ('backgroundPosition' in prop) {

 prop.backgroundPosition = '(' + prop.backgroundPosition

}

return oldAnim.apply(this, arguments)

}

function toArray(strg) {

strg = strg.replace(/left|top/g, '0px')

strg = strg.replace(/right|bottom/g, '100%')

strg = strg.replace(/([0-9\.]+)(\s|\)|$)/g, "$1px$2")

var res = strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/)

return [parseFloat(res[1], 10), res[2], parseFloat(res[3], 10), res[4]]

}

4、实现效果