1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | /*朋友粉絲欄懸浮收左邊*/ .dash-segment-friends .segment-content{ /*這些不動*/ position:fixed; z-index:6000; transition:left .6s; /*上下位置*/ top:250px; /*收起時左右位置*/ left:-270px; /*寬度*/ width:300px; } .dash-segment-fans .segment-content { /*這些不動*/ position:fixed; z-index:6000; transition:left .6s; /*上下位置*/ top:400px; /*收起時左右位置*/ left:-270px; /*寬度*/ width:300px; } /*展開時左右位置*/ .dash-segment-friends .segment-content:hover,.dash-segment-fans .segment-content:hover { left:20px; } |
Direct link: https://paste.plurk.com/show/SKD3i1RIU5krxourdcly