两个很实用的彩虹云商城装修代码分享,一个是侧边栏商品导航,可以设置靠左或者靠右。复制到自己的云商城内,记得更改对应的目录ID,否则代码里的文字是不对应的。另外一个是滚动的公告栏,可以自己更改喜欢的文字。
侧边栏商品导航
<style>
.elevator_item {
position: fixed;
left: 0; //靠左 right是靠右
bottom: 95px;
z-index: 11;
}
.elevator_item .feedback {
width: 36px;
height: 41px;
font-size: 12px;
padding: 5px 6px;
display: block;
border-radius: 5px;
text-align: center;
margin-top: 10px;
box-shadow: 0 1px 2px rgba(0,0,0,.35);
cursor: pointer;
}
.graHover {
position: relative;
overflow: hidden;
}
</style>
<div class="elevator_item" style="display:block;">
<a class="feedback graHover" style="background-color: #3cbdfa;color:#383838;" href="./">Q代刷网</a>
<a class="feedback graHover" style="background-color: #EE82EE;color:#383838;" href="/?cid=21<!--目录ID-->" rel="nofollow">王者人气</a>
<a class="feedback graHover" style="background-color: #ffd900;color:#383838;" href="/?cid=13" rel="nofollow">福利商品</a>
<a class="feedback graHover" style="background-color: #AF3A9F;color:#fff;" href="/?cid=2" rel="nofollow">低价Q钻</a>
<a class="feedback graHover" style="background-color: #1e6be3;color:#fff;" href="/?cid=9" rel="nofollow">官方Q钻</a>
<a class="feedback graHover" style="background-color: #fa3c63;color:#fff;" href="/?cid=6" rel="nofollow">抖音业务</a>
<a class="feedback graHover" style="background-color: #ffa500;color:#fff;" href="/?cid=4" rel="nofollow">快手业务</a>
<a class="feedback graHover" style="background-color: #06C17E;color:#fff;" href="/?cid=1" rel="nofollow">名片赞区</a>
<a class="feedback graHover" style="background-color: #3cbdfa;color:#fff;" href="/user/reg.php" rel="nofollow">注册登陆</a>
<a class="feedback graHover" style="background-color: #FF3399;color:#fff;" href="<!--QQ客服代码 或者其他能够使用的客服代码-->" rel="nofollow">联系客服</a>
</div>
滚动公告
<div class="list-group-item reed"> <marquee style="font-weight: bold;line-height: 18px;font-size: 16px;color: #FF0000;" direction="left" scrollamount="10" align="Middle"> 欢迎来到**网,支持代刷 :内容 </marquee> </div>


评论