在 Web 開發中,通常需要在更改元素時停用 CSS 過渡效果,以確保順利調整大小或外觀調整。這是最優雅的解決方案:
建立CSS 類別:
.notransition { -webkit-transition: none !important; -moz-transition: none !important; -o-transition: none !important; transition: none !important; }
使用JavaScript(不使用jQuery ):
someElement.classList.add('notransition'); // Disable transitions doWhateverCssChangesYouWant(someElement); someElement.offsetHeight; // Trigger a reflow, flushing the CSS changes someElement.classList.remove('notransition'); // Re-enable transitions
使用JavaScript jQuery:
$someElement.addClass('notransition'); // Disable transitions doWhateverCssChangesYouWant($someElement); $someElement[0].offsetHeight; // Trigger a reflow, flushing the CSS changes $someElement.removeClass('notransition'); // Re-enable transitions
說明:
此解決方案使用 CSS 類別來覆寫任何現有的轉換設定!重要。然後,它將類別新增至元素,進行所需的 CSS 更改,使用 offsetHeight 強制回流,最後刪除類別以重新啟用過渡。
以上是如何暫時停用 CSS 過渡效果以平滑元素大小調整?的詳細內容。更多資訊請關注PHP中文網其他相關文章!