Specification test cases
The test cases below are imported from the Turbo CSS specification.
They have been executed upon loading this page.
ease-linear
t1 ease-linear
.t1.ease-linear {
transition-timing-function: linear;
}
ease-in
t1 ease-in
.t1.ease-in {
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
ease-out
t1 ease-out
.t1.ease-out {
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
ease-in-out
t1 ease-in-out
.t1.ease-in-out {
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}