Code Monkey home page Code Monkey logo

Comments (7)

who519 avatar who519 commented on May 18, 2024 2

Awesome, thanks so much for the advice Niklas, I will get that stuff sorted. I was definitely banging my head against the wall on this one. I really appreciate you taking the time to help out a JS nooby, this tool is awesome.

cheers,
Tom

from muuri.

niklasramo avatar niklasramo commented on May 18, 2024 1

Yes, it's possible =) All you need to do is call grid.refreshItems().layout(); whenever the size of the items might have changed after the initiation. By default Muuri calls that on window resize. Let me know if that does not work.

from muuri.

niklasramo avatar niklasramo commented on May 18, 2024

If you know the specific item which's dimensions have changed you can optimize the refreshItems method call by targeting the changed item(s): grid.refreshItems(elem).layout();

from muuri.

who519 avatar who519 commented on May 18, 2024

my issues is that on load they aren't fully baked so muuri makes the grid with shallow items, should I just call the item refresh onload? Or just write the refresh script just below the init call in a separate script tag?

from muuri.

who519 avatar who519 commented on May 18, 2024

I think muuri is looking for the height dimension on load and reading them as zero, because the height is set to auto in my styles to accommodate for the percentage based width of my items and the images within them haven't loaded yet.

from muuri.

who519 avatar who519 commented on May 18, 2024

I did notice that if I resize the page it sets everything correctly.

from muuri.

niklasramo avatar niklasramo commented on May 18, 2024

Yep, Muuri caches the item sizes on init so you need to refresh the cached dimensions when the items' dimensions change. This very same issue has been discussed here: #34. Although, keep in mind that Muuri was v0.2.0 version at that time so the example won't work fully with v0.3.0.

For your specific scenario you need to do this:

// Refresh item dimensions and do layout after all images have loaded.
window.addEventListener('load', function () {
  grid.refreshItems().layout();
});

By the way, you have set CSS transitions to the Muuri item elements on your site which is a big no no and causes very janky animations since it interferes with Velocity's animations. Please read this: https://github.com/haltu/muuri#5-add-the-styles

from muuri.

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.