请,如何增加中的元素大小。我已经尝试过了,但是没有用。
<script>
function enlarger(){
document.getElementsById('enlarge').style.transform="scale(1.5)";
}
</script>
<style>
#enlarge{transition:transform .2s;}
</style>
<div onmouseover="enlarger()">
<i class="fa fa-desktop color"id="enlarge"></i>
<h2 style="font-size:150%; color:green"> Digital Capacity Development</h2>
<p style="text-align:justify;">This is a paragraph text</p>
</div>
答案 0 :(得分:0)
您可以使用纯CSS做到这一点。
div:hover i {
transform: scale(1.5);
}