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
/* 待機圖片 */

#dynamic_logo{
width:400px; /* 圖片寬度 */
height:400px; /* 圖片高度 */
background:url(https://images.plurk.com/6pw1EBpjJo4Vch03pQMh5v.gif) no-repeat; /* 圖片網址 */
cursor:url(https://images.plurk.com/6raqs82AZoLUNVAfDbDc7F.gif), auto; /* 游標圖片,尺寸限制128x128內,超過尺寸不會顯示 */
filter: drop-shadow(3px 3px 7px rgba(0, 0, 0, 0.3)); /* 陰影 */
overflow: hidden;
z-index:1000;
background-size:contain;
position: fixed; /* 固定位置在視窗右下 */
bottom: -50px;
right: -30px;
}



/* 滑鼠移上來換圖片 */

#dynamic_logo::after{
content:"";
background:url(https://images.plurk.com/3MZLdBHx2kusOmDzyBub79.gif) no-repeat; /* 圖片網址 */
width:400px; /* 圖片寬度 */
height:400px; /* 圖片高度 */
display:none;
background-size:contain;
}

#dynamic_logo:hover{
background:url();
}

#dynamic_logo:hover::after{
display:block;
}