JS Replacement Background Map

Source: Internet
Author: User

<!DOCTYPE HTML><HTML><HeadLang= "en">    <MetaCharSet= "UTF-8">    <title></title>    <styletype= "Text/css">        *{margin:0;padding:0}Body{background:#dddddd}#div1{width:100%;Height:100%;        }    </style></Head><BodyID= "Div1"onload= "Showbgimage ()"></Body></HTML><Script>    functionShowbgimage () {varCurindex= 0; //Define start index        varTimeInterval=  +; //define the switching time, 1s=1000ms        //To define an array of stored images        vararr= NewArray (); arr[0] = "Images/240.png"; //assign a value to each item in the array, which is to add the image path strengtharr[1] = "Images/340.png"; arr[2] = "Images/240.png"; arr[3] = "Images/340.png"; arr[4] = "Images/240.png"; arr[5] = "Images/340.png";       SetInterval (changeimg, timeinterval); //call the Show Picture method (parameter: Method name and switch time)        functionchangeimg () {varobj=document.getElementById ("Div1"); //get the element you want to set            if(Curindex==Arr.length- 1) {Curindex= 0; } Else{Curindex+= 1; } obj.style.backgroundImage= "URL (" +Arr[curindex]+ ")"; //set the background picture to get the element        }}    </Script>

JS Replacement Background Map

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.