码迷,mamicode.com
首页 > 其他好文 > 详细

图片逐渐由看不见到模糊,最后清晰显示;鼠标点击图片后,图片依照1、2、3、4顺序依次循环显示;鼠标移入图片区域,图片放大

时间:2017-03-20 18:52:02      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:依次   line   alt   pac   parent   定位   interval   鼠标   meta   

html<html<head lang="en"<meta charset="UTF-8"<titletitle</head<body<div</div<div<img src="images/1.jpg"  alt="" width="192"</div<brbr<div</div<brbrbr<scriptdocument.images[0].onmouseover=function(){
// 设置父元素的大小
this.parentNode.style.width = this.width+‘px‘;
this.parentNode.style.height = this.height+‘px‘;
// 设置当前图片为绝对定位
this.style.position = ‘absolute‘;
this.width = this.width*2;
}
document.images[0].onmouseout=function(){
this.width = this.width/2;
}
script<hr<div</div<div<img src="images/1.jpg" alt="" width="192" height="120"</div<brbr<div</div<brbrbr<scriptdocument.images[1].onclick=function(){
var begin = this.src.lastIndexOf(‘/‘);
var end = this.src.lastIndexOf(‘.‘);
var num = this.src.substring(begin+1, end);
num = parseInt(num)+1;
if(num>4) num=1;
this.src = ‘images/‘+num+‘.jpg‘;
}
script<hr<div</div<div<img src="images/1.jpg" alt="" style="display: none;" width="192"</div<brbr<button id="btnshow"</button<div</div<scriptvar opnum=0.02, imgtime;
function showimg(){
var img3 = document.images[2];
opnum+=0.02;
img3.style.opacity=opnum;
img3.style.display=‘inline‘;

if(opnum>=1)
clearInterval(imgtime);
}
document.getElementById(‘btnshow‘).onclick=function(){
var img3 = document.images[2];
img3.style.opacity=0;
img3.style.display=‘inline‘;
this.disabled = true;
imgtime=setInterval(showimg, 200);
}
script</body</html>

图片逐渐由看不见到模糊,最后清晰显示;鼠标点击图片后,图片依照1、2、3、4顺序依次循环显示;鼠标移入图片区域,图片放大

标签:依次   line   alt   pac   parent   定位   interval   鼠标   meta   

原文地址:http://www.cnblogs.com/huzjijie/p/6590680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!