1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
/*掉下來噗寶*/
.dash-segment-stats .segment-content:before {
content:""; position:fixed; z-index:9999;
opacity:0; background-size:cover; bottom:100vh;
transition:opacity 0.8s, bottom 0s 0.8s, background-image 0s 0.8s;
/*大小*/ height:150px; width:150px;
/*距離左邊位置*/right:50px; /*可換成right變成距離右邊的位置*/
/*圖片*/ background-image:url(https://images.plurk.com/4KQ30o3f90jYwVaFxOALTg.png);
}

#plurk-dashboard:hover .dash-segment-stats .segment-content:before {
transition:opacity 0s, bottom 1.3s linear, background-image 0.3s 0.8s;
opacity:1;
/*摔下來後距離底下的位置*/ bottom:20px;
/*圖片*/ background-image:url(https://images.plurk.com/4KQ30o3f90jYwVaFxOALTg.png);
}