GithubHelp home page GithubHelp logo

Callbacks about parallax.js HOT 9 CLOSED

darknailblue avatar darknailblue commented on July 26, 2024
Callbacks

from parallax.js.

Comments (9)

maija-brazen avatar maija-brazen commented on July 26, 2024 1

To do stuff when parallax images are loaded, I can warmly recommend using this plugin:
https://github.com/adampietrasiak/jquery.initialize/blob/master/jquery.initialize.js
and do for example

$('.parallax-slider').initialize(function() {
// 
});

from parallax.js.

mikegreiling avatar mikegreiling commented on July 26, 2024

Essentially, this plugin just sets up the slider elements, then runs a requestAnimationFrame on 'load', 'resize', and 'scroll' events. Rather than a "before" hook, couldn't you just run some code prior to the call to the .parallax() method? The "during" code could be called immediately after the constructor, and the "after" code could be added to an onload trigger for the image within .parallax-slider. Do you have a specific use case in mind?

from parallax.js.

darknailblue avatar darknailblue commented on July 26, 2024

That makes a lot of sense, but doesn't take into account having multiple parallax images on the page. Attaching a load event for each .parallax-slider is a good idea but the problem is that '.parallax-mirror' doesn't refer back to which element is defined as being a parallax element.

from parallax.js.

darknailblue avatar darknailblue commented on July 26, 2024

My JS looks like this so far and allows some cool loading animations with CSS

$('.parallax-background').each(function(index, el){
    var image = $(el).data('data-image-src');
    $(el).parallax({imageSrc: image });

    $('.parallax-slider').on('load', function(){
        $(el).removeClass('light').removeClass('dark');
    });
});

CSS looks like such

.parallax-background {
    -webkit-transition: background 0.3s ease;
    -moz-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.parallax-background.light {
    background: #fff;
    color: #000;
}

.parallax-background.dark {
    background: #000;
    color: #fff;
}

from parallax.js.

mikestreety avatar mikestreety commented on July 26, 2024

I'm also after an onLoad or similar callback, as the image get's created but still takes a "moment" to apply to CSS. I'm trying to avoid the flash of no image.

from parallax.js.

TheJester12 avatar TheJester12 commented on July 26, 2024

Agreed, some kind of callback after everything loads would be helpful.

from parallax.js.

dimandzhi avatar dimandzhi commented on July 26, 2024

I've found an alternative for this callback. Since parallax image is loaded into

<img class="parallax-slider">

we can use its loaded state. Something like this:

$(".parallax-slider").on("load", function() {
    $(window).trigger("resize").trigger("scroll");
    // Other code...
});

from parallax.js.

wstoettinger avatar wstoettinger commented on July 26, 2024

would #192 be sufficient for this?

from parallax.js.

wstoettinger avatar wstoettinger commented on July 26, 2024

please refer to #192 for future reference

from parallax.js.

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.