Приветствую участников форума!
Не получается осуществить динамическое добавление картинок в плагин вращения изображений на 360 градусов (в карточке товара в интернет-магазине).
<script type="text/javascript">
window.onload = init;
var product;
function init(){
car = $('.product1').ThreeSixty({
totalFrames: 52,
endFrame: 52,
currentFrame: 1,
imgList: '.threesixty_images',
progress: '.spinner',
imagePath:'http://360slider.com/img/car/',
filePrefix: '',
ext: '.png',
height: 447,
width: 1000,
navigation: false,
disableSpin: true,
plugins: ['ThreeSixtyFullscreen']
});
$('.custom_previous').bind('click', function(e) {
car.previous();
});
$('.custom_next').bind('click', function(e) {
car.next();
});
$('.custom_play').bind('click', function(e) {
car.play();
});
$('.custom_stop').bind('click', function(e) {
car.stop();
});
}
</script>
В скрипте картинки загружаются только из папки:
imagePath:'http://360slider.com/img/car/',
На сайте динамическая ссылка на фото реализована: src="{$product->image->filename|resize:500:500}"
Никак не могу связать скрипт с динамической ссылкой.
Прошу помощи