• hello i would like to ask is there a way so i can have on my homepage an intro video that disappears after a specific time? Can you please help me to inform me how is this possible?

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can use Some widgets to integrate a video and hide/remove the element using Javascript. The below code can hide hid element with id myDiv in 4000 milliseconds

    var timePeriodInMs = 4000;

    setTimeout(function()
    {
    document.getElementById(“myDiv”).style.display = “none”;
    },
    timePeriodInMs);

    Thread Starter Alex4842

    (@alex4842)

    Thank you @sakar U Khatiwada!! i will try it!!! ??

    Thread Starter Alex4842

    (@alex4842)

    I tried it but it didn’t worked. Is it possible somehow with revolution slider?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘intro video that disappears after a specific time’ is closed to new replies.