티스토리 뷰
$(function(){
//start
$('.drag').draggable({
revert:true
});
$('.drop').droppable({
drop : function(){
$(this).addClass('active');
$('.drag').css({
left:0
});
$('.drag').draggable({
revert:false,
containment : '.drop'
})
},//drop end
classes: {
"ui-droppable-active": "ui-state-active",
"ui-droppable-hover": "ui-state-hover",
}
});
//end
});
html 로 들어가서
<pre class="brush:java;">
소스코드
</pre>
이안에 코드 작성후 작성완료하면 적용됨.
https://galatians220.tistory.com/4
여기를 참고함
'Study' 카테고리의 다른 글
[VSCODE]eslint 쌩 쑈를 해도 안먹던 eslint가.. (0) | 2020.04.08 |
---|
댓글