2024-06-16

This commit is contained in:
2024-06-16 01:16:39 +09:00
parent d2e7f6ad44
commit e9af16eb7b
14 changed files with 262 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
# Transition
* `transition`
* `transition-property`
* `transition-duration`
* `transition-timing-function`
* `transition-delay`
```CSS
div {
transition: <property> <duration> <timing-function> <delay>;
}
```