Results 1 to 3 of 3

Thread: Cross Browser marquee II

  1. #1
    Join Date
    Mar 2011
    Posts
    20
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default Cross Browser marquee II

    1) Cross Browser marquee II

    2) http://www.dynamicdrive.com/dynamicindex2/cmarquee2.htm

    3) how to adjust script to make it scrolls the contents horizontally (sideways)?

    How to adjust this script to make it scroll text horizontally, not vertically? I just want make horizontal scrolling. There is however, Cross Browser marquee version that scroll horizontally, but this script is very old and deprecated(from 2002).. The Cross Browser marquee II is slightly newer than aboved script.
    Last edited by siluet; 05-20-2012 at 11:09 PM.

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Use Crawler:

    http://www.dynamicdrive.com/dynamici...wler/index.htm

    It's horizontal, up to date and can be used for text or images or both.

    The speed and direction can be controlled by the mouse, or it can be a set speed and direction with or without mouseover pause.

    There are other options.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    siluet (05-20-2012)

  4. #3
    Join Date
    Mar 2011
    Posts
    20
    Thanks
    4
    Thanked 0 Times in 0 Posts

    Default

    is it possible interface Crawler script with another script that load php output into the div? I want display php output in a scrolling marquee. If yes, how to connect it? Below is example, php script print the output inside div:

    Code:
    <html>
    <head>
      <title></title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
    <script>
        setInterval(function () {
            $('#reload').load('track.php');
        }, 10000);
    </script>
    </head>	
    
    <body> 
    <div id="reload"></div> 
    </div> 
    </body> 
    </html>
    Last edited by siluet; 05-14-2012 at 08:54 PM.

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
  •