#box-ease { transition: all 2s ease; }
#box-linear { transition: all 2s linear; }
#box-ease-in { transition: all 2s ease-in; }
#box-ease-out { transition: all 2s ease-out; }
#box-steps { transition: all 2s steps(10, end); }
#box-cubic-bezier { transition: all 2s cubic-bezier(0, -0.2, 0.2, -0.2); }