Results 1 to 9 of 9

Thread: help pls...

  1. #1
    Join Date
    Oct 2007
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Question help pls...

    What is the command to make the background blinking?
    Thanks for help

  2. #2
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    A blinking background? Why on earth would someone want that. In any case, you would want to use a background image for this as there is not a specific code that does this.

    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  3. #3
    Join Date
    Oct 2007
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by thetestingsite View Post
    A blinking background? Why on earth would someone want that. In any case, you would want to use a background image for this as there is not a specific code that does this.

    Hope this helps.
    How about body background? possible to make it or not? Thanks

  4. #4
    Join Date
    Oct 2007
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

  5. #5
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    To make the bg blinking? try this:
    Code:
    <script type="text/javascript">
    document.body.style.background="blue";
    setTimeOut('other()',1);
    function other(){
    document.body.style.background="green";
    setTimeOut('other_this()',1);
    }
    function other_this(){
    document.body.style.background="blue";
    setTimeOut('other()',1);
    }
    </script>
    Jeremy | jfein.net

  6. #6
    Join Date
    Oct 2007
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by Nile View Post
    To make the bg blinking? try this:
    Code:
    <script type="text/javascript">
    document.body.style.background="blue";
    setTimeOut('other()',1);
    function other(){
    document.body.style.background="green";
    setTimeOut('other_this()',1);
    }
    function other_this(){
    document.body.style.background="blue";
    setTimeOut('other()',1);
    }
    </script>
    that one i need is not using javascript !
    anyway thank you brother !!!

  7. #7
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    You want it to use js or not?
    Jeremy | jfein.net

  8. #8
    Join Date
    Oct 2007
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by Nile View Post
    You want it to use js or not?


    similar like this !!! But use it as body background.....mean the background colour keep changing like the colour i above

  9. #9
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Make a blinking 1px gif animation and set that as a repeating background. Step two: endure seizures.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

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
  •