Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何使用 XTK 触发窗口调整大小事件?是否可以将图像的宽度和高度提取到画布中?
最好的,阿马尔
调整大小事件只是一个一般的调整大小事件,如这里https://stackoverflow.com/a/7622176/1183453
var evt = document.createEvent('UIEvents'); evt.initUIEvent('resize', true, false,window,0); window.dispatchEvent(evt);