University of New Hampshire, Department of Computer Science

Information Technology 502
, Intermediate Web Design

Spring 2024

Jump to navigation

Design Template by Anonymous

How to Trigger Transitions

As mentioned previously, we can trigger our animations through pseudo classes, like :hover. As you might be able to guess, there are more that we can use. They are listed below.

Here is an example of using both :hover and :active.

          
            .element {
                width: 100px;
                transition: width 2s ease 0.5s;
            }

            .element:hover, .element:active {
                width: 150px;
            }