絵文字でローディングアイコン “emoji loader”
慧: こんにちは! 以前ツイートしたものを記事にしておくよ。
こういう loader 思い付いたんだけど、どうかな? http://t.co/zdYDsaXYBL pic.twitter.com/sS9naUob18
— プロ生ちゃん(暮井 慧)🍍 (@pronama) February 11, 2015
Twitter 絵文字をそのままくるくる回る Ajax とかの loader (spinner) にしてみるとおもしろいかも? っていうアイデア。絵文字は twemoji を使ってるよ。
emoji loader
デモ ここ。コードは GitHub の css と html ファイルを直接みてね。
使い方
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="loader"></div> | |
<script> | |
$(".loader").html(twemoji.parse('🍣')); | |
</script> |
回転させる CSS
CSS の記述はこういう感じ。loader class の要素を1秒で1回転。実際には、animation や @keyframes には、ベンダープレフィックスがいろいろ必要だよ。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.loader { | |
display: inline-block; | |
width: 36px; | |
height: 36px; | |
animation: spin 1s infinite linear; | |
} | |
@keyframes spin { | |
from { | |
transform: rotate(0deg); | |
} | |
to { | |
transform: rotate(360deg); | |
} | |
} |
The following two tabs change content below.
都内の公立高校に通う高校生。部活は、情報処理研究会。身体を動かすのも好きで、気が向いたときはなぜか体育会系の部活に混ぜてもらっていろんなスポーツをすることも。プログラミング生放送のキャラクターとして活動中!
最新記事 by kei (全て見る)
- プロ生ちゃんチョコプログラミングコンテスト2024開催! - 2024/02/13
- HSP プログラムコンテスト2023 結果発表&プロ生ちゃん賞発表! #hsp3 - 2023/12/04
- プロ生ちゃんクリスマスプログラミングコンテスト2023開催! - 2023/12/04