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 | /*更換噗浪獸圖片*/ /*隱藏噗浪獸*/ #dynamic_logo img{ opacity:0.0; } /*---------------------------------------*/ #dynamic_logo{ /*圖片連結,可放jpg,png,gif*/ background-image: url(圖片網址); /*背景不重複*/ background-repeat: no-repeat; /*按照圖片填大小*/ height: 高度px; width: 寬度px; /*相對定位*/ position:relative; /*透明背景圖陰影*/ filter: drop-shadow(X偏移px Y偏移px 模糊度px rgba(0, 0, 0, 1.0)); /*上距離,左距離*/ margin-top:80px;/*靠下可把top改成bottom*/ margin-left:20px;/*靠右可把left改成right*/ /*圖片所在圖層,可調整在噗文上方*/ z-index:600;/*不知為啥我的要到600才能在噗文上方,可以自己調整看看*/ /*滑鼠移入變換鼠標,圖片圖層要在噗文上方,先調整z-index*/ cursor: url("圖片網址"), auto; } /*滑鼠移入變換圖片*/ #dynamic_logo:hover{ background-image: url(圖片網址); } |
Direct link: https://paste.plurk.com/show/16Zd8eJCdyAp9oivTlIt