【发布时间】:2017-08-27 02:16:15
【问题描述】:
如何使用@keyframes 来缩放转换(放大)我的HTML <body></body> 标签中的所有内容?
有没有办法使用关键帧来代替我的临时解决方案body:hover?
在首次加载网站页面时,主体应在 1.5 秒内缩放 1.01。
body {
transition: all 1.5s ease-in-out;
transform: scale(1.00);
}
body:hover {
transition: all 1.5s ease-in-out;
transform: scale(1.01);
}
【问题讨论】:
标签: css transform css-animations transition keyframe