Skip to content

Latest commit

 

History

History
43 lines (40 loc) · 1.14 KB

prompts.md

File metadata and controls

43 lines (40 loc) · 1.14 KB
layout title section h2
bffos
Prompts
transitions
<strong>CSS transitions:</strong> Provide context using UI animations

Prompts

Example

Email Settings
Email Settings Value Selector

CSS Animations

{% highlight css linenos=table %} /* Launch Value Selector */ animation: fadeIn 0.2s forwards; @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } /* Close Value Selector */ animation: fadeOut 0.2s forwards; @keyframes fadeOut { 0% { opacity: 1; } 100% { opacity: 0; } }{% endhighlight %}