fix: disable transition properties (#2659)

This commit is contained in:
Niklas von Hertzen
2021-08-14 16:22:36 +08:00
committed by GitHub
parent cd0d7258c3
commit f143166551
4 changed files with 11 additions and 5 deletions

View File

@@ -55,6 +55,11 @@
transform: rotate(45deg)
}
.transition-delay {
transition: 1ms;
transition-delay: 50ms;
transform: rotate(45deg)
}
div {
float: left;
@@ -84,5 +89,9 @@
<div class="transitioned broken">
<p>Hello</p>
</div>
<div class="transition-delay">
<p>Hello</p>
</div>
</body>
</html>