Results 1 to 2 of 2

Thread: please help me, pop in scroller

  1. #1
    Join Date
    May 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default please help me, pop in scroller

    I 'm looking for a java scripts that:

    When my home page loaded complete, it will have a scroller popup flying from left to the center of page display my Notice to member, then after 10s it will auto close or flying to right or left (not problem) and close. I had seen it before along time but now i need it but can see. Anyone have please give me. Thanks

  2. #2
    Join Date
    Jul 2006
    Location
    Antwerp, Belgium (Europe)
    Posts
    927
    Thanks
    121
    Thanked 2 Times in 2 Posts

    Default

    Code:
    <script type="text/javascript">
    
    var autohidebox=["yes", 5] //Automatically hide box after x seconds? [yes/no, if_yes_hide_after_seconds]
    
    function controlledhidebox(){
    if (autohidebox[0]=="yes"){
    var delayvar=(enablefade=="yes" && objref.filters)? (autohidebox[1]+objref.filters[0].duration)*1000 : autohidebox[1]*1000
    setTimeout("hidefadebox()", delayvar)
    }
    }
    
    </script>
    Should be something like this ?

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •