youzanyun-devtool-worker
Version:
23 lines (19 loc) • 419 B
JavaScript
var active = false;
document.addEventListener('mousemove', function(event) {
active = true;
window.top.postMessage({
command: 'iframe-mource-move',
data: {
clientX: event.clientX,
clientY: event.clientY,
}
},'*');
});
document.addEventListener('mouseup', function() {
if (active) {
window.top.postMessage({
command: 'iframe-mource-up',
data: false
},'*');
}
});