mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-11-25 06:16:06 -05:00
example tweak
This commit is contained in:
@@ -23,11 +23,11 @@ Below are the code snippets you can grab and customize to make your own
|
|||||||
### CSS:
|
### CSS:
|
||||||
|
|
||||||
```css
|
```css
|
||||||
span#wave {
|
span.wave {
|
||||||
animation-name: wave-animation; /* Refers to the name of your @keyframes element below */
|
animation-name: wave-animation; /* Refers to the name of your @keyframes element below */
|
||||||
animation-duration: 2.5s; /* Change to speed up or slow down */
|
animation-duration: 2.5s; /* Change to speed up or slow down */
|
||||||
animation-iteration-count: infinite; /* Never stop waving! :) */
|
animation-iteration-count: infinite; /* Never stop waving :) */
|
||||||
transform-origin: 70% 70%;
|
transform-origin: 70% 70%; /* Pivot around the bottom-left palm */
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@ span#wave {
|
|||||||
### HTML:
|
### HTML:
|
||||||
|
|
||||||
```html
|
```html
|
||||||
<span id="wave">👋</span>
|
<span class="wave">👋</span>
|
||||||
```
|
```
|
||||||
|
|
||||||
That's it! More skin tones can be [found on 📕Emojipedia](https://emojipedia.org/search/?q=waving+hand).
|
That's it! More skin tones can be [found on 📕Emojipedia](https://emojipedia.org/search/?q=waving+hand).
|
||||||
|
|||||||
Reference in New Issue
Block a user