我正在尝试像这个页面一样创建 zoomIn 效果:示例网站
顶部的“mk”标志在页面加载时放大。
我试图复制代码,这是我到目前为止所拥有的,但它不起作用:
html:
<div id="header">
    <div id="toplogo"><h1><a href="http://www.pz.com">PagesByZ:: Think Outside the Box</a></h1></div>
</div>
CSS:
#header {
    width: 800px;
    height: 80px;
    animation: 0.4s ease-in-out 0s normal forwards 1 zoomIn;
}
#toplogo h1 { 
    margin: 0; 
    padding: 0; 
}
#toplogo h1 a { 
    display: block; 
    width: 212px; 
    height: 80px; 
    margin: 20px 0 0; 
    background: url('http://www.interfaithmedical.com/pz/theImages/hdrLogo.png') no-repeat; 
    color: #fff; 
    font-size: 40px; 
    font-weight: 400; 
    outline: none; 
    text-indent: -10000px; 
}
JDFiddle 示例:http: //jsfiddle.net/n75rL/
每次页面加载时,我都试图在我的徽标上实现这种效果。