Coder Social home page Coder Social logo

Work with carousel slider? about unveil HOT 2 OPEN

webregie avatar webregie commented on July 18, 2024
Work with carousel slider?

from unveil.

Comments (2)

Flaschenzug avatar Flaschenzug commented on July 18, 2024

hi, im not using a carusel, but a jquery based pagination. And when i change the items with the click on the pagination button, the new images are not loaded - only when i start so scroll.

Is there a solution for this problem?

from unveil.

terwey avatar terwey commented on July 18, 2024

Here's an example how it should work with Flexslider:

$(window).load(function() {
    $(".firstimage img").trigger("unveil");

    $('#slider').flexslider({
        before: function(slider) {
            $(slider.newSlides).find("img").trigger("unveil");
        }
    });
});

The important bit is first always unveil the first image. With Flexslider the important bit is in the before Callback.

If you are using the Flexslider in a duo with another for controlling it try this:

$(window).load(function() {
    $("#carousel img").trigger("unveil");
    $(".firstimage img").trigger("unveil");

    // The slider being synced must be initialized first
    $('#carousel').flexslider({
        controlNav: false,
        asNavFor: '#slider'
    });

    $('#slider').flexslider({
        controlNav: false,
        sync: "#carousel",
        before: function(slider) {
            $(slider.newSlides).find("img").trigger("unveil");
        }
    });
});

#slider is the big slider which is being controlled by the #carousel.

from unveil.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.