以上内容如何制作?它可以通过拖动菜单文本区域(菜单图像或某些内部 div)来上下拖动,并且 div 在拖动时向下或向上(具有最大和最小限制)。
我不能让这个代码工作,任何人都可以给出一个实用的代码吗?
whole_menu.onPress = function() {
startDrag(this);
};
whole_menu.onRelease =function () {
stopDrag();
};
whole_menu.onPress = function() {
startDrag(this, false, 0, this._y, 800-this._width, this._y);
};
whole_menu.onRelease =function () {
stopDrag();
};
编辑:
添加了更多解释和代码,因此
无需关闭此问题