layout | title | section | h2 |
---|---|---|---|
bffos |
Opening and closing apps |
transitions |
<strong>CSS transitions:</strong> Provide context using UI animations |
/* Show app */ animation: openApp 0.3s forwards ease; @keyframes openApp { 0% { transform: scale(0.1); opacity: 0; } 100% { transform: scale(1.0); opacity: 1; } }{% endhighlight %}
/* Hide app */ animation: closeApp 0.3s forwards ease; @keyframes closeApp { 0% { transform: scale(1.0); opacity: 1; } 100% { transform: scale(0.1); opacity: 0; } }{% endhighlight %}