kudago / waterfall

Waterfall layout. Extremely fast lightweight version of fluid columns masonry layout of isotope.
http://kudago.github.io/waterfall/
288 stars 67 forks source link

Exclude element #6

Closed Alex-Sokolov closed 11 years ago

Alex-Sokolov commented 11 years ago

I have a markup:

<div id="waterfall" class="container">
    <div class="timeline-item"></div>
    <div class="timeline-item"></div>
    <div class="timeline-item"></div>
    <div class="timeline-item"></div>
</div>

There are news, that I want to show in 2 columns. Between this colums only for styling purposes I want to add timeline.

<div id="waterfall" class="container">
    <div class="timeline"></div>
    <div class="timeline-item"></div>
    <div class="timeline-item"></div>
    <div class="timeline-item"></div>
    <div class="timeline-item"></div>
</div>

But how I can do, to exclude .timeline block from waterfall reflow

dy commented 11 years ago

Wait for it till evening :)

dy commented 11 years ago

Look for last commit. Just add data-exclude="true" to an element you want to exclude.

Alex-Sokolov commented 11 years ago

Thanks!