在调整DIV大小时需要平滑动画 – JavaScript

前端之家收集整理的这篇文章主要介绍了在调整DIV大小时需要平滑动画 – JavaScript前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我在DIV上空盘旋时,它的高度和宽度都会增加,但我不知道如何让它更加平滑,而不是一次调整大小
function chg()
{
  document.getElementById("d1").innerHTML="Great Job!";
  document.getElementById("d1").style.width="300px";
  document.getElementById("d1").style.height="200px";
}

function chg2()
{
  document.getElementById("d1").innerHTML="Hover Over Me!";
  document.getElementById("d1").style.width="230px";
  document.getElementById("d1").style.height="160px";
}
div
{
  background-color:RGB(177,0);
  color:white;
  font-size:large;
  height:160px;
  width:230px;
  text-align:center;
  line-height:150px;
}
<!DOCTYPE html>
<html>
<body>
<div onmouSEOver="chg()" onmouSEOut="chg2()" id="d1">Hover Over Me!</div>
</body>
</html>

解决方法

说明

你应该看看CSS3中的过渡属性.

资源

有关更多信息,请查看以下链接

> CSS3 Transitions
> Using CSS transitions

function chg() {
  document.getElementById("d1").innerHTML = "Great Job!";
  document.getElementById("d1").style.width = "300px";
  document.getElementById("d1").style.height = "200px";
}

function chg2() {
  document.getElementById("d1").innerHTML = "Hover Over Me!";
  document.getElementById("d1").style.width = "230px";
  document.getElementById("d1").style.height = "160px";
}
div {
  background-color: RGB(177,0);
  color: white;
  font-size: large;
  height: 160px;
  width: 230px;
  text-align: center;
  line-height: 150px;
  transition: all .5s linear;
}
<div onmouSEOver="chg()" onmouSEOut="chg2()" id="d1">Hover Over Me!</div>
原文链接:https://www.f2er.com/css/215386.html

猜你在找的CSS相关文章