我做的这个是仿当当网的产品相册,在IE7上没问题,在360浏览器上部分功能失效!鼠标放在右侧的照片上,
左面就没办法出来图片了!!
具体看下连接:http://product.dangdang.com/picbox.php?product_id=1363881701&name=%D3%EB%C0%C7%B9%B2%CE%E8T%D0%F4+%D0%DD%CF%D0%CA%B1%C9%D0+%B4%BF%C3%DE%B6%CC%D0%E4T%D0%F4+%BE%AB%C6%B7%C4%D0%D7%B0+214106587+9%C9%AB&type=mall&count=5
这是我的代码:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<meta name="keywords" content="纵向的JS相册效果" />
<meta name="description" content="纵向的JS相册效果" />
<title>纵向的JS相册效果</title>
<style>
body {background:#000000;margin:20px 0;font:12px Verdana, Arial, Tahoma;text-align:center;vertical-align:middle;color:#FFFFFF}
img {border:none}
.txt_1 {font:bold 24px Verdana, Tahoma;color:#fff}
img.thumb_img {cursor:pointer;display:block;margin-bottom:10px}
img#main_img {cursor:pointer;display:block;}
#gotop {cursor:pointer;display:block;}
#gobottom {cursor:pointer;display:block;}
#showArea {height:355px;margin:10px;overflow:hidden}
.info {color:#666;font:normal 9px Verdana;margin-top:20px}
.info a:link, .info a:visited {color:#666;text-decoration:none}
.info a:hover {color:#fff;text-decoration:none}
</style>
</head>
<body>
<table width="760" border="0" align="center" cellpadding="0" cellspacing="5">
  <tr>
    <td height="75" colspan="2" align="left" class="txt_1">纵向的JS相册效果</td>
  </tr>
  <tr>
    <td width="640" align="center"><img src="images/03.jpg" width="640" height="400" border="0" id="main_img" rel="images/03.jpg"/></td>
    <td width="110" align="center" valign="top">
    <img src="images/gotop.gif" width="100" height="14" id="gotop" />  //向上图片标志
    <div id="showArea">
        <img src="images/01.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/01.jpg"/>
        <img src="images/02.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/02.jpg" />
        <img src="images/03.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/03.jpg"/>
        <img src="images/01.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/01.jpg"/>
        <img src="images/02.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/02.jpg"/>
        <img src="images/02.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/03.jpg"/>
        <img src="images/01.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/01.jpg"/>
        <img src="images/02.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/02.jpg"/>
        <img src="images/03.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/03.jpg"/>
        <img src="images/01.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/01.jpg"/>
        <img src="images/02.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/02.jpg"/>
        <img src="images/03.jpg" width="80" height="50" border="0" class="thumb_img" rel="images/03.jpg"/>
    </div>
    <img src="images/gobottom.gif" width="100" height="14" id="gobottom" /> //向下图片标志</td>
  </tr>
</table>
</body>
</html>
<script language="javascript" type="text/javascript">
function $(e) {return document.getElementById(e);}
document.getElementsByClassName = function(cl) {
    var retnode = [];
    var myclass = new RegExp('\\b'+cl+'\\b');
    var elem = this.getElementsByTagName('*');
    for (var i = 0; i < elem.length; i++) {
        var classes = elem[i].className;
        if (myclass.test(classes)) retnode.push(elem[i]);
    }
    return retnode;
}
var MyMar;
var speed = 1; //速度,越大越慢
var spec = 1; //每次滚动的间距, 越大滚动越快
var ipath = 'images/';  //图片路径
var thumbs = document.getElementsByClassName('thumb_img');
for (var i=0; i<thumbs.length; i++) {
    thumbs[i].onmouseover = function () {$('main_img').src=this.rel; $('main_img').link=this.link;};
    thumbs[i].onclick = function () {location = this.link;}
}
$('main_img').onclick = function () {location = this.link;}
$('gotop').onmouseover = function() {this.src = ipath + 'gotop2.gif'; MyMar=setInterval(gotop,speed);}
$('gotop').onmouseout = function() {this.src = ipath + 'gotop.gif'; clearInterval(MyMar);}
$('gobottom').onmouseover = function() {this.src = ipath + 'gobottom2.gif'; MyMar=setInterval(gobottom,speed);}
$('gobottom').onmouseout = function() {this.src = ipath + 'gobottom.gif'; clearInterval(MyMar);}
function gotop() {$('showArea').scrollTop-=spec;}
function gobottom() {$('showArea').scrollTop+=spec;}
</script>
在此先谢谢啦!