首页htmltransitionCSS Property Value - 如何transition: 1s;

CSS Property Value - 如何transition: 1s;

我们想知道如何transition: 1s;

<!DOCTYPE html>
<html>
<head>
<title>CSS Transition vs Zoom - jsFiddle demo by fireman_biff</title>
<style type='text/css'>
div {
  background: red;
  height: 200px;
  width: 200px;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s;
}

div:hover {
  height: 300px;
  width: 300px;
}
</style>
</head>
<body>
  <div></div>
</body>
</html>