How to change image-background after sometime?

前端 未结 5 366
别跟我提以往
别跟我提以往 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条回答
  •  一生所求
    2021-01-15 16:21

    If you're using the Prototype library:

    var changeBackground = function() {
       $$('body').first().setStyle({
          backgroundImage: 'newImage.jpg'
       });
    };
    changeBackground.delay(15);
    

提交回复
热议问题