Moveable/draggable

前端 未结 7 622
我在风中等你
我在风中等你 2020-11-28 02:31

This is my updated and modified script, it works completely, except I would like to universalize it... observe the **** how can I make it so that I don\'t have to do f

7条回答
  •  北荒
    北荒 (楼主)
    2020-11-28 03:14

    An additional method to "niente00" code.

    init : function(className){
        var elements = document.getElementsByClassName(className);
        for (var i = 0; i < elements.length; i++){
            elements[i].onmousedown = function(){mydragg.startMoving(this,'container',event);};
            elements[i].onmouseup = function(){mydragg.stopMoving('container');};
            }
        }
    

提交回复
热议问题