Giter Site home page Giter Site logo

Gray space about parallax.js HOT 3 CLOSED

adamhairfield avatar adamhairfield commented on August 24, 2024
Gray space

from parallax.js.

Comments (3)

mikegreiling avatar mikegreiling commented on August 24, 2024

The images now showing up in Safari appears to have to do with the layer ordering of the body element. It appears in front of the .parallax-slider elements and the background attribute blocks their view. You can set background: transparent; on the body or fiddle around with z-index.

As for the space at the bottom of the page in Chrome/Safari. It appears to go away if you resize the window and then scroll up or down. It would seem that the body height is being modified by another script after the parallax has been initialized (presumably by the script which is adding your twitter feed to the footer) and the calculations are thrown off until a "resize" and "scroll" event are triggered.

You can remedy this by adding the following triggers after the twitter feed has been loaded.

jQuery(window).trigger('resize').trigger('scroll')

I think this can be done by adding the above line to /wp-content/plugins/inline-tweets/js/handler.js within the success event method.

Note: confusingly, you appear to be loading two versions of jQuery on every page load, so due to the noConflict setting, you must use jQuery(window) in the method call above rather than $(window) since the parallax plugin attaches itself to the former.

from parallax.js.

adamhairfield avatar adamhairfield commented on August 24, 2024

Awesome, thanks for the help! I went ahead and added your code and it worked, but then at second thought deleted the plugin. I also cleaned up the second jquery file. Thanks a ton!

from parallax.js.

mikegreiling avatar mikegreiling commented on August 24, 2024

Glad to hear it worked out!

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.