美文网首页
搜索框的动画效果

搜索框的动画效果

作者: 冰箱哥哥 | 来源:发表于2017-04-21 09:25 被阅读0次
5.gif
4.gif
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body >
        <input type="text"  id="search" style="width: 100px;"/>
        <script>
            window.onload=function(){
                search.onfocus=function(){
                    this.style.width=200+"px";
                    this.style.transition="1s";
                }
                search.onblur=function(){
                    this.style.width=100+"px";
                    this.style.transition="1s";
                }
                
            }
        </script>
    </body>
</html>


相关文章

网友评论

      本文标题:搜索框的动画效果

      本文链接:https://www.haomeiwen.com/subject/hhaczttx.html