<html>
<head>
<style>
#line {
height: 1px;
width: 100%;
float: left;
background-color: #8e9194;
position: absolute;
top: 85%;
left: 0;
}
</style>
</head>
<body>
<button id="b1">Click Here</button>
<script>
var o = document.getElementById("line");
document.getElementById("b1").onmouseover = function () {
o.style.height = "10px";
};
document.getElementById("b1").onmouseout = function () {
o.style.height = "1px";
};
</script>
<div id="line"></div>
</body>
</html>
このコードを動作させることができません。私がやろうとしているのは、マウスオーバーで行のサイズを大きくし、マウスアウトで1pxに戻すことだけです。
これにアニメーションを組み込む方法があればいいですね。
ありがとう。