box-shadow的动效制作

Posted where there is a will, there i

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了box-shadow的动效制作相关的知识,希望对你有一定的参考价值。

突然发现原来box-shadow的功能很强大,还能做动效,下面整理下box-shadow几个效果

案例1:hover效果

<a href="/app/list">WEB小应用</a>

  css:

#list_nav li a {
    height: 38px;
    display: block;
    width: 150px;
    background: #FFF; 
    margin: 10px;
    text-decoration: none;
    border: 1px solid #2695F3;
    color: #fff;
    -moz-box-shadow: 200px 0 #2695F3 inset;
    box-shadow: 200px 0 #2695F3 inset;
    webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    border-radius: 5px;
}
#list_nav li a:hover {
    box-shadow: 5px 0 #2695F3 inset;
    color: #2695F3;
    margin-top: 10px;
}  

 

效果:

hover时:

 

以上是关于box-shadow的动效制作的主要内容,如果未能解决你的问题,请参考以下文章

SKETCH+KEYNOTE双剑合璧!教你5步快速制作移动动效

网页精美动效/动画制作 按钮鼠标悬浮动效的注意点 02《炫彩网页 iVX 无代码动效/动画制作》

principle中的动效怎么实现

iOS开发Facebook POP动效库使用教程

Apple官网的动效

Apple官网的动效