0

我正在 Weebly 上建立一个网站。我希望所有图像在鼠标悬停时都增加大小。其中一些尺寸不同,所以我想按百分比来做。我找到了一个代码并尝试自己编辑它,但它不起作用。这是我尝试使用的代码:

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('img').mouseover(grow);
$('img').mouseout(shrink);
});

function grow(){
$(this).css('height','150%');
$(this).css(‘width’,’auto’)
}

function shrink(){
$(this).css('height','100%');
$(this).css(‘width’,’auto’)
}
</script>

在此先感谢您的帮助。:)

4

0 回答 0