Created
September 1, 2019 22:05
-
-
Save TrywaR/45c15356ffddb290460ca78848e2a45f to your computer and use it in GitHub Desktop.
MODX Revo | PdoPage | Masonry > Адаптивная сетка элементов
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Весь 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() | |
// Адаптивная сетка товаров х | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Ну и вызов 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