Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS The WOW Slider's blinds transition does not work

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #275263
    Ajax30
    Participant

    I am working on a customized version of the WOW Slider (testing the possibilities it offers to developers). More exactly, it is a image slider designed to stretch over the entire viewport (of a laptop or desktop).

    Here is a Plunker with the slider’s code.

    The full-screen preview is here.

    I have a small piece of jQuery script that uses inline images as background images, to solve the problem of large images that go over the boundaries of the viewport:

    $('#wowslider-container ul').find('li').each(function() {
       var imgContainer = $(this),
        bkImg = imgContainer.find('img').attr('src');
        imgContainer.css("background-image", 'url("' + bkImg + '")');
    });
    

    The problrm is that I have difficulties adding the blinds transition. Adding effect: "blinds" to the sliders set of option does not work.

    What shall I do?

Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.