slidetext loop off?

Support Forums Gris – HTML Template slidetext loop off?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #5454
    Artur
    Participant

    is it possible to set the loop off from the slidetext? I mean if i set the loop off from the youtube video so the slidetext goes further on. We want to stop it together with the youtube video.

    Thanks

    #5457
    CreaboxThemes
    Keymaster

    Hi,

    add the next function to the file scripts.js:

    $('#bgndVideo').on("YTPEnd",function(e){
         $(".messages").fadeOut();
    });

    If the previous function doesn’t work, use the next one:

    
    setTimeout ( function() {
        $(".messages").fadeOut();
    }, 10000);

    Change the value 10000 to the time when the video is ended.

    Regards

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.