HTML5+CSS3小实例:伸缩式动态搜索框

HTML5+CSS3小实例之伸缩式动态搜索框

技术栈:HTML+CSS

字体图标库:font-awesome

效果:

源码:





    
    

    伸缩式动态搜索框
    
    



    



body{
    /* 初始化 取消内外边距 */
    margin: 0;
    padding: 0;
    /* 100%窗口高度 */
    height: 100vh;
    /* 渐变背景 */
    background: linear-gradient(200deg,#e3eeff,#f3e7e9);
}
.search-box{
    /* 绝对定位 水平垂直居中 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #2f3640;
    height: 40px;
    border-radius: 40px;
    padding: 10px;
}
.search-txt{
    border: none;
    background: none;
    outline: none;
    float: left;
    padding: 0;
    color: white;
    font-size: 16px;
    line-height: 40px;
    width: 0;
    /* 动画过渡 */
    transition: 0.4s;
}
.search-btn{
    color: #e84118;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2f3640;
    /* 弹性布局 水平垂直居中 */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* 动画过渡 */
    transition: 0.4s;
}
/* 鼠标移入文本框变化 */
.search-box:hover .search-txt{
    width: 200px;
    padding: 0 6px;
}
/* 鼠标移入搜索按钮变化 */
.search-box:hover .search-btn{
    background: #fff;
}

你可能感兴趣的:(HTML5+CSS3小实例:伸缩式动态搜索框)