Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 464 Bytes

README.md

File metadata and controls

19 lines (18 loc) · 464 Bytes

z-Dragify

    new Dragify(document.querySelector('#box'),{
                target: document.querySelector("#box-title")
            })
            .on('start', function () {
                console.log('s')
            })
            .on('move', function () {
                console.log('m')
            })
            .on('end', function () {
                console.log('e')
            })
    new Dragify("#box",{
        target: "#box-title"
    })