Jump to content
  • 0

Подскажите как реализовать слайдер


saracen
 Share

Question

Добрый день. Прошу помощи у знатаков.

Пытаюсь внедрить к себе на сайт слайдер, но столкнулся с такой проблемой, если выводить продукты списком, то вроде все нормально, но мой список продуктов подгружается через смарти и скрипт его выдает вот так:

c3836b3a3243.jpg

то есть видит каждый товар как один слайд, а мне нужно сделать 3 слайда по 4 товара в каждом. Пытался добавлять в скрипт visible:4, rotateBy:4, но не работает, моих знаний не хватает, помогите пожалуйста. Вот мой код.



<script type="text/javascript">
$(function() {
$('#slider-new').cycle({
fx:'scrollHorz',
width:730,
height: 350,
pager: '.paggs',
timeout: 800000 });
function pagerFactory(idx, slide) {
var s = idx > 3 ? ' style="display:none"' : '';
return '<li'+s+'><a href="#">'+(idx+1)+'</a></li>';
};
});
</script>

[html]
<div class="slider-wrap">
<div class="products-carousel">
<h2 class="subtitle">Новинки</h2>
<div class="paggs"></div>

<ul class="products-grid_extra" id="slider-new">
{foreach from=$__products item=_product name}
{if $_product.slug}{assign var=_product_url value="?productID=`$_product.productID`&product_slug=`$_product.slug`"|set_query_html}{/if}
<li>
{if $_product.thumbnail}
<a href="{$_product_url}"><img src="{$smarty.const.URL_PRODUCTS_PICTURES}/{$_product.thumbnail|escape:'url'}" alt="{$_product.name|escape:'html'}"></a>
{/if}
<a href="{$_product_url}">{$_product.name}</a>
{if $_product.Price}<div class="product_Price">{$_product.price_str}</div>{/if}
</li>
{/foreach}
</ul>

</div>
</div>
[/html]

Прошу удалить данную тему, уже сам разобрался.

Edited by saracen
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy