dragon8002 2014-12-11 08:48
浏览 57
已采纳

有没有办法用infinitescroll在magento中实现masonry.js?

For infinitescroll am using the free extension: 'vs-infinite-ajax-scrolling', this extension provides noconfilct workaround too jquery version it imports is 1.7.2, am looking for a way to implement masonry.js from desendro with this extension and integrate both in default magento. can anyone please guide me on the same.

  • 写回答

1条回答 默认 最新

  • douzhe1264 2014-12-11 12:44
    关注

    See http://masonry.desandro.com/#getting-started for instructions.

    Magento probably has the item listings looking something like this:

    <ul class="products-grid">
        <li class="item">...product info here...</li>
        <li class="item">...product info here...</li>
        <li class="item">...product info here...</li>
    </ul>
    

    So. Following the instructions on Masonry's homepage you need to first make sure that the Masony JS in included in you page section, by adding it to some of you XML - for example your theme's local.xml file in the default section or perhaps just in the catalog listing section so it won't be included on pages where it's not needed.

    If you can't figure out how to do this, ask a new question on how to add a custom JS to product listing pages. This is what I meant by being specific. You need to do the initial work, breaking up your problem into smaller parts and asking questions based on the specific task at hand. Nobody on the internet likes to do what I'm doing and holding your hand all through the process. On their spare time. For free.

    Next up is to initialize the Masonry script on the product listing using one of the two methods available and described on their homepage. For example you can add this to the -tag:

    <ul class="products-grid js-masonry" data-masonry-options="{ 'columnWidth': 200, 'itemSelector': '.item' }">
        <li class="item">...product info goes here..</li>
        <li class="item">...product info goes here..</li>
        <li class="item">...product info goes here..</li>
    </ul>
    

    And it should probably work, maybe with some added CSS fixes.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥35 平滑拟合曲线该如何生成
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 自己瞎改改,结果现在又运行不了了
  • ¥15 链式存储应该如何解决
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站