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

prepareSlideshow函数

时间:2015-10-27 13:28:26      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

function prepareSlideshow() {
if (!document.getElementsByTagName) return false;
if (!document.getElementById) return false;
if (!document.getElementById("linklist")) return false;
var slideshow=document.createElement("div");
slideshow.setAttribute("id","slideshow");
var preview=document.createElement("img");
preview.setAttribute("src","images/topics.gif");
preview.setAttribute("alt","building blocks of web design");
preview.setAttribute("id","preview");
slideshow.appendChild(preview);
var list=document.getElementById("linklist");
insertAfter(slideshow,list);
var links=list.getElementsByTagName("a");
links[0].onmouseover=function(){
moveElement("preview",-100,0,10);
}
links[1].onmouseover=function(){
moveElement("preview",-200,0,10);
}
links[2].onmouseover=function(){
moveElement("preview",-300,0,10);
}
}
addLoadEvent(prepareSlideshow);

已经平稳退化,把div里的属性元素,id元素全部放在了JavaScript里面,退化的更彻底。

prepareSlideshow函数

标签:

原文地址:http://www.cnblogs.com/CClarence/p/4913814.html

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