-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhanabira.css
71 lines (67 loc) · 2.18 KB
/
hanabira.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*---------------------------------------------------------------------
桜吹雪の効果の為のスタイルシート
---------------------------------------------------------------------*/
html,
body {
overflow-x: hidden;
overflow-x: clip;
position: relative;
}
/* さくらの花びらの楕円形 */
.hana {
position: absolute;
width: 0;
height: 0;
border: 10px solid transparent;
border-radius: 15px;
border-top-right-radius: 0;
border-bottom-left-radius: 0;
/* さくらの花びらの楕円形 */
/* 15度回転させることで、花びら形にする */
&::after {
content: "";
display: block;
position: absolute;
top: -7px;
left: -7px;
width: 0;
height: 0;
border: 10px solid transparent;
border-radius: 15px;
border-top-right-radius: 0;
border-bottom-left-radius: 0;
transform: rotate(15deg);
}
}
/* 淡い櫻色から濃い櫻色まで 五色のテーマ */
.t1, .t1::after { border-color: #fef4f4; }
.t2, .t2::after { border-color: #ffd1d9; }
.t3, .t3::after { border-color: #ffc0cb; }
.t4, .t4::after { border-color: #ffc0cb; }
.t5, .t5::after { border-color: #ffafbd; }
/* アニメーション(動き) を五種類用意する */
.a1 { animation: a1 12s infinite; }
.a2 { animation: a2 10s infinite; }
.a3 { animation: a3 9s infinite; }
.a4 { animation: a4 9s infinite; }
.a5 { animation: a5 8s infinite; }
@keyframes a1 {
from { transform: rotate( 0deg) scale(.9); }
50% { transform: rotate( 270deg) scale(.9); }
to { transform: rotate( 1deg) scale(.9); }}
@keyframes a2 {
from { transform: rotate( -90deg) scale(.8); }
50% { transform: rotate(-360deg) scale(.8); }
to { transform: rotate( -89deg) scale(.8); }}
@keyframes a3 {
from { transform: rotate( 30deg) scale(.7); }
50% { transform: rotate( 300deg) scale(.7); }
to { transform: rotate( 29deg) scale(.7); }}
@keyframes a4 {
from { transform: rotate(-120deg) scale(.6); }
50% { transform: rotate(-390deg) scale(.6); }
to { transform: rotate(-119deg) scale(.6); }}
@keyframes a5 {
from { transform: rotate( 60deg) scale(.5); }
50% { transform: rotate( 330deg) scale(.5); }
to { transform: rotate( 59deg) scale(.5); }}