我想创建一个页面,用户可以在其中选择将以幻灯片形式显示的图像。我试图使用mootools拖放,并想使用lightgallery.js。
如何将一系列已删除的图像传递到dynamicEL? 有没有办法使用#cart.item的id /类加载图像?
非常感谢任何帮助。并且在编码方面提前道歉。
这是一个似乎只有轻微工作的代码集http://codepen.io/ssab/pen/QGyKVO
$(function() {
jQuery('#dynamic').on('click', function() {
var selected_image = [];
jQuery( "#cart.item img" ).each(function() {
var item1 = {
src: $(this).find('img').attr('src'),
thumb: $(this).find('img').attr('data-thumb'),
subHtml: '<h4></h4>'
};
selected_image.push(item1);
});
jQuery(this).lightGallery({
dynamic: true,
dynamicEl: selected_image
})
});
});
var drop = $('cart');
var dropFx = drop.effect('background-color', {wait: false}); // wait is needed so that to toggle the effect,
$$('.item').each(function(item){
item.addEvent('mousedown', function(e) {
e = new Event(e).stop();
var clone = this.clone()
.setStyles(this.getCoordinates()) // this returns an object with left/top/bottom/right, so its perfect
.setStyles({'opacity': 0.7, 'position': 'absolute'})
.addEvent('emptydrop', function() {
this.remove();
drop.removeEvents();
}).inject(document.body);
drop.addEvents({
'drop': function() {
drop.removeEvents();
clone.remove();
item.clone().inject(drop);
dropFx.start('7389AE').chain(dropFx.start.pass('ffffff', dropFx));
},
'over': function() {
dropFx.start('98B5C1');
},
'leave': function() {
dropFx.start('ffffff');
}
});
var drag = clone.makeDraggable({
droppables: [drop]
}); // this returns the dragged element
drag.start(e); // start the event manual
});
});
答案 0 :(得分:1)
您可以通过两种方式启动灯箱。
dynamicEl
或这里实施了选项2: http://codepen.io/imranweb7/pen/zorRLG?editors=1111 这个实现背后的逻辑就像你复制到丢弃区域的html一样。
如有任何疑问,请与我们联系。