帮忙加个图片切换效果

2016-07-07 16:27 来源:www.chinab4c.com 作者:ecshop专家

我想在网站上加个图片切换效果
请高手帮忙
http://www.yiqisf.cn/ec/goods.php?id=55
在里里加 图片切换
如这样的
http://www.yes826.com/goods.php?id=10

在哪个文件修改 谢谢了

模板goods.dwt部分调用代码:
<div class="imgInfo">
<!-- {if $pictures}-->
<a href="{$pictures.0.img_url}" class="MagicZoom" id="zoom1"><img src="{$goods.goods_img}" width="230" height="230" alt="{$goods.goods_name|escape:html}"/></a>
<!-- {else} -->
<img src="{$goods.goods_img}" alt="{$goods.goods_name|escape:html}"/>
<!-- {/if}-->
<div class="blank5"></div>
<!--相册 START-->
<!-- #BeginLibraryItem "/library/goods_gallery.lbi" --><!-- #EndLibraryItem -->
<!--相册 END-->
<div class="blank5"></div>
<!-- TemplateBeginEditable name="商品相册下广告(宽230px)" -->
<!-- TemplateEndEditable -->
</div>


可用的JS文件代码:

function addLoadEvent(func) {
var oldonload =window.onload;
if(typeof(window.onload)!='function'){
window.onload = func;
} else{
window.onload =function(){
oldonload();
func();
}
}
}
function showPic(whichpic){
var source = whichpic.getAttribute("href");
var placeholder = document.getElementById("placeholder");
//placeholder.setAttribute("src",source);
placeholder.src=source;
var text = whichpic.getAttribute("title");
var description = document.getElementById("description");
description.firstChild.nodeValue = text;
}
function prepareGallery() {
var gallery =document.getElementById("img_gallery");
var links = gallery.getElementsByTagName("a");
for(var i=0;i<links.length;i++){
links.onmouseover=function(){
return false;
}
links.onclick=function(){
showPic(this);
return false;
}
}
}
addLoadEvent(prepareGallery);

未命名.jpg (26.35 KB)

我网站上的图片

未命名.jpg


回答:
这个不是一两句能说清的 还要去分析下。。。。
等年后没什么事帮你看看咯

谢谢楼上
我把代码在上面了 怎么改啊