1
大家好我是編程初學者。 當我在網頁上上下拖動圖像時,我想更改圖像的大小?
當我拖動它時,尺寸應該減小。 我可以通過動畫改變它的大小,現在我想讓它發生,當我拖動它。 下面的代碼向上或向下拖動圖像時,如何更改圖像的大小?
<!DOCTYPE html>
<html>
<head>
<style>
div.hidden
{
width:20px;
height:80px;
background:white;
position:relative;
overflow:hidden;
left:50px;
top:400px;
-webkit-animation-timing-function:linear;
-webkit-animation:myfirst 5s ;
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
from {background:white; height:0px;width:0;left:50px; top:40px; }
to {background:white; height:80px;width:20px;left:50px; top:430px;}
}
</style>
</head>
<body background="road.jpg">
<div style="position:relative;width:126px;height:350px; overflow:hidden; border: solid 1px;left:639px;top:307px;">
<div class="hidden";></div>
</div>
To: <input type="text" name ="To"><br><br>
</body>
</html>
感謝您的關注 –
如果你得到預期的結果,接受這個答案。 – DRAJI