1.首先是ecshop首页调用某分类下的图片,看过我上几篇博客的都知道怎么调用了吧!没看过的可以看看ecshop首页调用某分类下的商品|assign_cat_goods()
提示:
只需要在index.php写上这么一句:assign_cat_goods(34,10);
其中34是分类id,10是调用的条数
assign_cat_goods这个函数是在includes/lib_goods.php里面的
2.将下面的代码放到你index.dwt模板页,你想要放置的位置,里面的id=34是分类的id,改为你自己的id,哈哈,我们的ecshop首页增加某分类下图片滚动效果就完成咯,不过css样式你的自己调整哈
<!--图片向左滚动-->
<div class="blank5"></div>
<div class="blank"></div>
3.ecshop首页增加某分类下图片滚动效果css我的代码如下:
.pro_new_top{background:#f9f6f4 url(./images/ban1.jpg) no-repeat; height:60px;}
.pro_new_top h1 span{display:none;}
#demo{background: #FFF;overflow:hidden;border: 1px solid #CCC;width: 948px;}
#demo a,img{margin:0;padding:0;}
#indemo{float: left;width: 800%;}
#demo1{float: left;}
#demo2{float: left;}