1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
/*下雪按鈕改變符號*/
.snowflake {
	/*這裡勿動*/ font-size:0;
	/*上下位置與左右位置替換用,如果在右下則這行可刪除*/ bottom:auto; right:auto;
	/*滑鼠移上時透明度漸變*/ transition:opacity 0.6s ease;
	/*上下位置*/ bottom:40px; /*bottom可改top*/
	/*左右位置*/ right:20px; /*right可改left*/
}
.snowflake:before {
	/*這裡勿動*/ position:absolute; right:0; bottom:0;
	/*想顯示的符號*/ content:"雪";
	/*文字大小*/ font-size:60px;
}