我有jQuery Ui可拖動元素的樣式問題。 這裏我有什麼jQuery ui可拖動元素獲取其他可拖動元素
就像你看到的,我有兩個可投放區域,在每個區域中的元素都是可拖動,並可以將它從一個塊放入,元素到另一個 唯一的問題,即當我將元素從頂部塊拖動到塊下面時,拖動元素在可拖放元素下面是元素,但是當我從底部拖動到頂部時,不存在這樣的問題。
這裏是拖動
$(".slide").draggable({
// brings the item back to its place when dragging is over
revert:true,
// once the dragging starts, we decrease the opactiy of other items
// Appending a class as we do that with CSS
start: function(event, ui) { $(this).css("z-index", a++); },
drag:function() {
$(this).removeClass('droped');
},
// adding the CSS classes once dragging is over.
stop:function() {
$(this).addClass('droped');
},
zIndex: 10000,
snapMode: "inner"
});
任何人可以幫助我,請我的工作,它已經2天的代碼,並不能弄清楚是什麼問題,我已經試圖改變Z-每個塊的索引位置,但沒有結果;
你撥弄不工作,但你可以嘗試給的z-index你試圖移動,也許您在下面想要的塊太大 – Randy
刪除'Z-索引:來自'ul.book_list'的[2] [小提琴](http://jsfiddle.net/sameer_kc/zbo7g5nz/3/) – Sami
請不要繞開質量過濾器。這不是你的第一個問題,[你之前直接在代碼中包含代碼](http://stackoverflow.com/questions/27633120/website-with-scrollmagic-pins)。 – BoltClock