使用CSS / jQuery更改拖动元素的颜色

时间:2018-10-10 20:15:57

标签: javascript jquery css

我想将元素X拖动到中心。

当我拖动元素X时,我想在拖动时将其颜色更改为蓝色,但是,请将原始红色列保持在其原始位置。

我该怎么做?

基本上,X会有两种样式-一种是我们开始拖动它的样式,另一种是当它被拖动时的样式,

这是我到目前为止的内容(但是X样式改变了):

var dragged;

        this.btnSectionPicker$.on('dragstart', function (event) {
            dragged = $(event.target);

            this._dropReset();

            this._sectionSelected = dragged.attr('id')
            dragged.addClass('dragged');
        }.bind(this));

        this.btnSectionPicker$.on('dragend', function (event) {
            dragged = event.target;
        }.bind(this));

0 个答案:

没有答案