Skip to content

Instantly share code, notes, and snippets.

@TrywaR
Created September 1, 2019 22:05
Show Gist options
  • Save TrywaR/45c15356ffddb290460ca78848e2a45f to your computer and use it in GitHub Desktop.
Save TrywaR/45c15356ffddb290460ca78848e2a45f to your computer and use it in GitHub Desktop.
MODX Revo | PdoPage | Masonry > Адаптивная сетка элементов
// Весь js и masonry из CDN
// <script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
$(function(){
// Адаптивная сетка товаров
// $('.block_products').masonry()
var $container = $(".rows")
$container.masonry()
// Адаптивная сетка товаров х
})
$(document).on('pdopage_load', function() {
// Адаптивная сетка товаров
var $container = $(".rows");
$container.masonry('reloadItems')
$container.masonry()
// Адаптивная сетка товаров х
})
<!-- Ну и вызов pdopage -->
<div id="pdopage">
<div class="rows">
[[!pdoPage?
&limit=`12`
&ajax=`1`
&ajaxMode=`button`
]]
</div>
[[!+page.nav]]
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment