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 | /* 更換頭貼旁噗幣圖示+游標移上去出現提示框 */ /* 文字長度一變,提示框尺寸和位置就會變,所以位置一定要再自己調整 */ /* 以下以尺寸39x39圖片為例 */ .profile-icons{ height:39px !important; width:39px !important; } .premium{ opacity:0; /* 隱藏噗幣圖案 */ } .profile-icons{ background:url(圖片網址) no-repeat; width:39px; height:39px; position:relative; z-index:100; } .profile-icons::before{ font-size: 12px; display:none; box-sizing: border-box; border:solid black 1px; position:absolute; padding:0 7px; border-radius:5px; left:50%; /* 置中用-不用調整 */ min-width:100%; /* 提示框寬度-不用調整 */ content:"歡迎加入 調査員 !"; /*框內文字*/ height:26px; /* 提示框高度 */ color:white; /* 文字顏色 */ text-align:center; /* 文字左右置中 */ line-height:22px; /* 行高 */ margin-left:-55px; /* 提示框左右位置 */ background-color:#383838; /* 背景顏色 */ top:-28px; /* 提示框位置高度 */ } .profile-icons::after{ display:none; box-sizing: border-box; content:""; width:5px; height:5px; border:solid 5px; position:absolute; transform: rotate(-135deg); left:50%; /* 置中用-不用調整 */ border-color: #383838 transparent transparent #383838; /* 提示框尾巴顏色 */ margin-left:-4px; /* 提示框左右位置 */ top:-8px; /* 提示框尾巴位置高度 */ } .profile-icons:hover::before{ display:block; } .profile-icons:hover::after{ display:block; } |
Direct link: https://paste.plurk.com/show/u4LXApIdQ3TsK86BPC3t