How to change image-background after sometime?

前端 未结 5 410
别跟我提以往
别跟我提以往 2021-01-15 15:40

HI everybody

i need to know if there are a way to change the background image after a specific time like 10 sec or 30 sec...etc. you know like yahoo Login mail \"it\

5条回答
  •  猫巷女王i
    2021-01-15 16:43

    You could use javascript's setTimeout or setInterval to do this, or look into JQuery's Timers

    EDIT: With JQuery, this will change the background after 1 sec:

    $(window).oneTime(1000, function() {
        // change your background image here
      });
    

提交回复
热议问题