Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>This is the Answer:</strong> never mind guys, after making a bit more exact search on Google. I found a good solution.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;!-- This file retrieved from the JS-Examples archives http://www.js-examples.com 1000s of free ready to use scripts, tutorials, forums. Author: Steve S - http://jsmadeeasy.com/ --&gt; &lt;style&gt; body { /*Remove below line to make bgimage NOT fixed*/ background-attachment:fixed; background-repeat: no-repeat; /*Use center center in place of 300 200 to center bg image*/ background-position: 300 200; } &lt;/style&gt; &lt;script language="JavaScript1.2"&gt; /* you must supply your own immages */ var bgimages=new Array() bgimages[0]="http://js-examples.com/images/blue_ball0.gif" bgimages[1]="http://js-examples.com/images/red_ball0.gif" bgimages[2]="http://js-examples.com/images/green_ball0.gif" //preload images var pathToImg=new Array() for (i=0;i&lt;bgimages.length;i++) { pathToImg[i]=new Image() pathToImg[i].src=bgimages[i] } var inc=-1 function bgSlide() { if (inc&lt;bgimages.length-1) inc++ else inc=0 document.body.background=pathToImg[inc].src } if (document.all||document.getElementById) window.onload=new Function('setInterval("bgSlide()",3000)') &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;BR&gt;&lt;center&gt;&lt;a href='http://www.js-examples.com'&gt;JS-Examples.com&lt;/a&gt;&lt;/center&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p><a href="http://www.js-x.com/page/javascripts__example.html?view=1072" rel="nofollow noreferrer">Found it here</a>.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload