검색어: datatransfer (영어 - 러시아어)

인적 기여

전문 번역가, 번역 회사, 웹 페이지 및 자유롭게 사용할 수 있는 번역 저장소 등을 활용합니다.

번역 추가

영어

러시아어

정보

영어

enter the datatransfer object.

러시아어

Объект datatransfer

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

영어

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

러시아어

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

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

영어

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

러시아어

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

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

영어

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.

러시아어

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

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

영어

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

러시아어

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

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

영어

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.

러시아어

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.

마지막 업데이트: 2018-02-21
사용 빈도: 1
품질:

인적 기여로
9,166,980,111 더 나은 번역을 얻을 수 있습니다

사용자가 도움을 필요로 합니다:



당사는 사용자 경험을 향상시키기 위해 쿠키를 사용합니다. 귀하께서 본 사이트를 계속 방문하시는 것은 당사의 쿠키 사용에 동의하시는 것으로 간주됩니다. 자세히 보기. 확인