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.
我正在尝试捕捉正在运行的 css 转换以具有某种事件功能,jQuery('#element').resize();以便我可以顺利调整部分由 jQuery 生成的布局。
jQuery('#element').resize();
我已经找到很多描述transitionend的文章。遗憾的是,该事件仅在 - 您可能猜到 - 过渡结束时才会触发。但我正在寻找一个事件,它会一直触发直到过渡结束。
不幸的是,正如 W3 所指定的那样,由于 CSS 转换而触发的唯一 JavaScript 事件是transitionend事件。规范中没有描述其他事件,更不用说实现了。
transitionend
参考: