zoukankan      html  css  js  c++  java
  • ECSHOP首页成功实现订单上下滚动

    首先在library/下新建一个gundong.lbi文件代码如下

    <div style="1020px; margin-bottom:5px;height:29px;overflow:hidden; background:url(/themes/Fuu%20Lace/images/new_order.gif)">
    
    
        <div id="noticev2" style="white-space:nowrap; padding-left:150px; line-height:29px;">
    
    
        {foreach from=$order_list item=order}
    
    
          <span style="padding-left:100px">{$order.order_sn}</span><span style="padding-left:100px">{$order.user_name}</span>  <span style="padding-left:100px">
    
    {$order.region_name}</span> <span style="padding-left:100px"> ${$order.order_amount}</span> <span id="order_status" style="padding-left:100px">{if $order.order_status eq 5}
    
    Deliveried{else}{$order.order_status}{/if}</span><br>
    
    
        {/foreach}
    
    
        </div>
    
    
    </div>
    
     
    
    
    <script>
    
    
    var tID;
    
    
    var tn;
    
    
    var nStopTime=3000
    
    
    var nSpeed=50
    
    
    var isMove=true;
    
    
    var nHeight=29;
    
    
    var nS=0
    
    
    var nNewsCount=0
    
    function moveT(n)
    
    
    {
        clearTimeout(tID)
    
    
        var noticev2= document.getElementById("noticev2")
    
    
        if(n)
    
    
        {
            noticev2.style.lineHeight=nHeight+"px";
    
    
            var theText=noticev2.innerHTML.toLowerCase();   
    
            nNewsCount=theText.split("<br>").length    
    
     
            noticev2.innerHTML+="<br>"+noticev2.innerHTML;
    
    
            tn=nHeight;
    
    
        }
    
    
        nS=nSpeed;
    
    
        if(isMove)
    
    
        {
    
    
            noticev2.style.marginTop=tn+"px";
    
    
            if((tn-2)%nHeight==0)
    
    
            {
                nS=nSpeed+nStopTime;
            }
               
            tn--;
    
    
            if(Math.abs(tn)==(nNewsCount*nHeight*2-nHeight))
    
    
            tn=(nNewsCount-1)*nHeight*-1;
    
    
        }
       
        tID=setTimeout("moveT()",nS);
    
    
    }
    
    
    
    moveT(1);
    
    </script>

    2. 然后在首页想插入的地方插入以下代码


    <!-- #BeginLibraryItem "/library/gundong.lbi" --><!-- #EndLibraryItem -->


    这种方法还会出现问题,就是非注册用户购买时,用户名就不显示了。

  • 相关阅读:
    C++标准转换运算符(2)
    C++标准转换运算符(1)
    未能加载视图状态。正在向其中加载视图状态的控件树必须与前一请求期间用于……
    我的第一篇博客
    C语言C语言程序
    C语言基本运算符
    C语言流程控制
    C语言关键字、标识(zhi)符、注释
    msado15.dll版本引发的离奇故障
    mySQL错误: The used table type doesn't support FULLTEXT indexes
  • 原文地址:https://www.cnblogs.com/wangblognet/p/2809943.html
Copyright © 2011-2022 走看看