Results for datatransfer translation from English to Russian

English

Translate

datatransfer

Translate

Russian

Translate
Translate

Instantly translate texts, documents and voice with Lara

Translate now

Human contributions

From professional translators, enterprises, web pages and freely available translation repositories.

Add a translation

English

Russian

Info

English

enter the datatransfer object.

Russian

Объект datatransfer

Last Update: 2018-02-21
Usage Frequency: 1
Quality:

English

the datatransfer object the datatransfer property is where all the dnd magic happens.

Russian

Свойство datatransfer– это то самое место, где реализуется перетаскивание.

Last Update: 2018-02-21
Usage Frequency: 1
Quality:

English

the datatransfer object exposes properties to provide visual feedback to the user during the drag process.

Russian

Объект datatransfer обладает свойствами, которые создают визуальную подсказку для пользователей в процессе перетаскивания.

Last Update: 2018-02-21
Usage Frequency: 1
Quality:

English

it holds the piece of data sent in a drag action. datatransfer is set in the dragstart event and read/handled in the drop event.

Russian

Объект datatransfer устанавливается в событии dragstart, а считывается и обрабатывается в событии drop.

Last Update: 2018-02-21
Usage Frequency: 1
Quality:

English

conveniently, datatransfer also has a getdata(format) for fetching the drag data by mimetype. here is the modification to process the column drop:

Russian

Удобно, что у объекта datatransfer есть также функция getdata(format), позволяющая доставлять перетаскиваемые данные по mime-типу. Вот как выглядит измененный процесс перетаскивания столбца:

Last Update: 2018-02-21
Usage Frequency: 1
Quality:

English

function handledragstart(e) { this.style.opacity = '0.4'; // this / e.target is the source node. } function handledragover(e) { if (e.preventdefault) { e.preventdefault(); // necessary. allows us to drop. } e.datatransfer.dropeffect = 'move'; // see the section on the datatransfer object. return false; } function handledragenter(e) { // this / e.target is the current hover target. this.classlist.add('over'); } function handledragleave(e) { this.classlist.remove('over'); // this / e.target is previous target element.

Russian

function handledragstart(e) { this.style.opacity = '0.4'; // this / e.target is the source node. } function handledragover(e) { if (e.preventdefault) { e.preventdefault(); // necessary. allows us to drop. } e.datatransfer.dropeffect = 'move'; // see the section on the datatransfer object. return false; } function handledragenter(e) { // this / e.target is the current hover target. this.classlist.add('over'); } function handledragleave(e) { this.classlist.remove('over'); // this / e.target is previous target element.

Last Update: 2018-02-21
Usage Frequency: 1
Quality:

Get a better translation with
9,167,026,197 human contributions

Users are now asking for help:



We use cookies to enhance your experience. By continuing to visit this site you agree to our use of cookies. Learn more. OK