1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | /*========第二個噗寶========*/ #dynamic_logo:before { /*這行不用動*/ display:block; position:absolute; /*上下位置*/ top:-32px; /*可改bottom*/ /*左右位置*/ left:250px; /*可改left*/ /*這行不能改*/width: 100vw; /*這行基本上不用改,如果圖片被裁切再把數字加大*/height: 500px; /*改大小用這裡*/background-size: 350px auto; /*圖片不重複*/background-repeat: no-repeat;/*可改成repeat-x(橫向重複)或repeat-y(直向重複)*/ /*這行不能刪,括號裡不用放東西*/ content:url(); /*想要更動大小的圖片網址放這裡*/background-image: url(); image-rendering: pixelated;/*用像素法放大*/ image-rendering: -moz-crisp-edges; image-rendering: crisp-edges; } |
Direct link: https://paste.plurk.com/show/untERIKnifw0OwfRbs8I