-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoptoast.css
118 lines (100 loc) · 2.45 KB
/
poptoast.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* トーストメッセージのコンテナ */
.pop-toast-container {
position: fixed;
top: 16px;
right: 16px;
z-index: 9999;
}
/* トーストメッセージの基本スタイル */
.pop-toast {
margin-bottom: 16px;
padding: 8px 16px;
border-radius: 8px;
color: #222;
background-color: #fff;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
font-size: 14px;
display: flex;
align-items: center;
opacity: 0;
/* 初めて表示されたときのアニメーションのために不透明度を0に設定します。 */
transform: translateY(-100%);
/* スライド表示アニメーション(方向) */
transition: opacity 0.3s ease, transform 0.3s ease;
/* 不透明度と位置の変化にアニメーションを追加します。 */
}
/* トーストメッセージのスタイル */
.pop-toast-message {
margin-right: 10px;
flex-grow: 1;
/* 余ったスペースを利用して、メッセージが他の要素を圧迫しないようにします。 */
}
/* 閉じるボタンのスタイル */
.pop-toast-close {
font-size: 20px;
padding: 0px 4px;
line-height: 1;
color: #777;
background-color: #eee;
font-family: Arial, sans-serif;
font-weight: bold;
cursor: pointer;
border: none;
border-radius: 100%;
}
.pop-toast-close:hover {
opacity: 1
/* マウスが乗ったときの強調表示 */
}
/* アニメーションクラス */
.pop-toast-show {
opacity: 1;
transform: translateY(0);
/* スライド表示アニメーション(方向) */
transition: opacity 0.3s ease, transform 0.3s ease;
}
.pop-toast-hidden {
opacity: 0;
transform: translateY(-100%);
/* スライド表示アニメーション(方向) */
transition: opacity 0.3s ease, transform 0.3s ease;
}
.pop-toast-icon {
margin-right: 4px;
}
.pop-toast-icon svg {
vertical-align: middle;
/* アイコンがメッセージと同じ高さになるように設定します。 */
}
/* 位置 */
.pop-toast-top-right {
/* デフォルトなので不要 */
}
.pop-toast-top-left {
position: fixed;
top: 16px;
left: 16px;
}
.pop-toast-bottom-right {
position: fixed;
bottom: 16px;
right: 16px;
}
.pop-toast-bottom-left {
position: fixed;
bottom: 16px;
left: 16px;
}
/* アイコンの色 */
.pop-toast-success .pop-toast-icon {
color: #4CAF50;
}
.pop-toast-warning .pop-toast-icon {
color: #FF9800;
}
.pop-toast-error .pop-toast-icon {
color: #F44336;
}
.pop-toast-info .pop-toast-icon {
color: #2196F3;
}