Reading-Notes

Pstcohological Safety

Reading Notes Class 214

What does a CSS transform allow the developer to do to an element? The transform CSS property lets you rotate, scale, skew, or translate an element. It modifies the coordinate space of the CSS visual formatting model

What does a CSS transition allow the developer to do to an element? CSS transitions let you decide which properties to animate (by listing them explicitly), when the animation will start (by setting a delay), how long the transition will last (by setting a duration), and how the transition will run (by defining a timing function, e.g., linearly or quick at the beginning, slow at the. How does a CSS animation differ from a CSS transition? There are two ways to animate web elements in CSS: the animation and transition properties. The animation property allows you to change the properties of an element over a specific duration, while transition defines how an element changes over a specific duration.

What are some benefits to using CSS transitions on websites? There are three key advantages to CSS animations over traditional script-driven animation techniques: They’re easy to use for simple animations; you can create them without even having to know JavaScript. The animations run well, even under moderate system load. Simple animations can often perform poorly in JavaScript. How this topic fit in with your long-term goals? It fits in that it can help continue to get more comfortable with designing websites and how we further personalize projects websites for ourselves or for a customer!

Additional Information