暁美ほむら
暁美ほむら

ブログのメッセージボードの部分で使っているボタンのソースを載せておきます
画像はあらかじめ2枚ご用意ください
html
<a href="リンク先URL" target="_blank" class="rolloverPositionMenu" style="background:url('背景画像画像');">
<img src="通常表示画像" border="0" style="margin-left:0px;">
</a>
<img src="通常表示画像" border="0" style="margin-left:0px;">
</a>
CSS
a.rolloverPositionMenu {
display: block;
overflow: hidden;
text-align: center;
position: relative;
width: 60px;
height: 60px;
}
a.rolloverPositionMenu:hover img {
position: relative;
top: -60px;
}
display: block;
overflow: hidden;
text-align: center;
position: relative;
width: 60px;
height: 60px;
}
a.rolloverPositionMenu:hover img {
position: relative;
top: -60px;
}



