css - input中transition 设置background-color过渡,chrome浏览器页面初始化渲染会有过度效果
高洛峰
高洛峰 2017-04-17 14:46:38
0
2
755
    .search-input{
        width: 241px;
        padding: 5px 32px 5px 12px;
        border: 1px solid #fd2d59;
        border-radius: 18px;
        border-color: #ebebeb;
        background-color: #f7f7f7;
        font-size: 12px;
        line-height: 18px;
        -webkit-transition: background-color .5s ease-in-out 0s;
        -moz-transition: background-color .5s ease-in-out 0s;
        -o-transition: background-color .5s ease-in-out 0s;
        transition: background-color .5s ease-in-out 0s;
        &:focus{
            background-color: #fff;
        }
    }
高洛峰
高洛峰

拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...

全部回覆(2)
Ty80

你這是SASS?看見裡面套了個

        &:focus{
            background-color: #fff;
        }

如果瀏覽器一打開,這個input就自動獲得焦點了,那麼就會立刻改變背景色了,並不是瀏覽器初始化的問題

PHPzhong

chrome的已知bug,Google一直未修復,html 中加入 script 標籤可以解決
例如:<script>0</script>

stackoverflow

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板