CSSの@keyframesとanimationでポケモン捕獲っぽい画面を作ったよ
HTMLとCSSの@keyframes
とanimation
を使ってポケモン捕獲画面のようなボールが左右に動くローディング画面を作ってみました。
CSSのkeyframesとanimationについて
@keyframes
はアニメーションの開始から終了までの動きをカスタマイズできるCSSの文法です。
animation
プロパティはHTML要素にどのアニメーションを適応するか、アニメーションの時間、繰り返し回数はどを指定することができます。
ソースコード
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- ブラウザのCSSをリセット -->
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.7.0/build/reset/reset-min.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="loader">
<img src="モンスターボール画像のパス" alt="">
</div>
</body>
</html>
styles.css
@keyframes pokemonGet {
0% {
transform: rotate(0deg);
left: 0;
}
20% {
transform: rotate(-30deg);
left: -10px;
}
40% {
transform: rotate(0deg);
left: 0;
}
60% {
transform: rotate(30deg);
left: 10px;
}
80% {
transform: rotate(0deg);
left: 0;
}
}
.loader {
text-align: center;
position: fixed;
width: 100%;
height: 100%;
z-index:10001;
opacity: 0.95;
background-color: #555;
}
.loader img {
opacity: 1;
width: 100px;
display: inline-block;
position:relative;top:
calc(50% - 50px);
animation-name: pokemonGet;
animation-duration: 2s;
animation-iteration-count: infinite;
}
Author And Source
この問題について(CSSの@keyframesとanimationでポケモン捕獲っぽい画面を作ったよ), 我々は、より多くの情報をここで見つけました https://qiita.com/ryan_iwa/items/5e156351dcb067b518db著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .