当您单击此页面底部的“下一步,连接”部分时,我想重新创建动画
http://www.apple.com/music/radio/
有谁知道如何在JS或CSS3中重新创建它来实现完美的页面过渡吗?
发布于 2015-09-01 21:17:47
你应该使用简单的填充来获得效果。
padding-top: 50px; padding-bottom: 50px;
和动画的过渡!
transition: all 0.3s ease; -webkit-transition: all 0.3s ease; -moz-transition: all 0.3s ease;
DEMO
https://stackoverflow.com/questions/32319376
相似问题