ez 2013-08-28
一直很想試試看自己做一個有Mouseover效果的Button,這次參考了重灌狂人的文章提供的語法,在修改之後就出來囉!
- Mouseover變換文字顏色
- 固定在該區塊的左邊
- 文字上下左右置中
- Clicks直接換頁
【成品】
Mousever看看
【範例語法】
<div style="float: left;"> <div style="width: 180px; height: 50px; font-size: 25px; color: #777777; background-color: #ffeedd; border-style: dashed; line-height: 50px; text-align: center; cursor: pointer;" title="Mousever看看 " onclick="location.href = '目標連結'" onmouseover="this.style.color='#CC5533';" onmouseout="this.style.color='#777777';"> Mousever看看 </div> </div>