Skip to content

Instantly share code, notes, and snippets.

View xiaozi's full-sized avatar
🎯
Focusing

小子欠扁 xiaozi

🎯
Focusing
View GitHub Profile
@xiaozi
xiaozi / drag_and_drop.coffee
Last active November 4, 2017 11:10
js拖放
$ ->
$document = $(document)
$overlay = $('#overlayBox')
_drag_timer = undefined
show_overlay = (e) ->
$overlay.fadeIn(250)
hide_overlay = (e) ->
$overlay.fadeOut(250)