两种方形搜索框美化

温馨提示: 本文最后更新于2024-10-28 11:15:06,某些文章具有时效性,若有错误或已失效,请在下方 留言或联系 苏晨博客网

有好多人觉得7b2的方形更加好看,所以用css和js写了两个样式,下面教程开始

样式一

两种方形搜索框美化-苏晨博客

自定义css

.header-slider-search .line-form{
  border-radius:5px;
}
.header-slider-search .line-form .abs-right button{
    background: #0088ff;
    color: rgb(255, 255, 255);
    border-radius: 5px;
    margin-right: -28px;
    height: 51.28px;
      padding: 10px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}
@media(max-width: 767px) {
    .header-slider-search .line-form .abs-right button {
        height: 38px; /* 手机时的高度 */
    }
}
.header-slider-search .line-form .abs-right .icon{
  color:#fff;
}

自定义js

document.addEventListener("DOMContentLoaded", function () {
    const button = document.querySelector(".search-input-text .abs-right button.null");
    if (button) {
        const searchText = document.createElement("span");
        searchText.textContent = "搜索";
        searchText.classList.add("search-text");
        button.appendChild(searchText);
    }
});

样式二

两种方形搜索框美化-苏晨博客

自定义css

.search-form{ 
      border: 5px solid rgb(255 255 255 / 30%);
    border-radius: 5px;
    padding: 0;
    font-size: 15px;
}
.header-slider-search .line-form{
  border-radius:0px;
}
.header-slider-search .line-form .abs-right button{
    background: #0088ff;
    color: rgb(255, 255, 255);
    margin-right: -23px;
    height: 46.42px;
      padding: 10px;
}
@media(max-width: 767px) {
    .header-slider-search .line-form .abs-right button {
          margin-right: -16px;
        height: 38px; 
    }
}
.header-slider-search .line-form .abs-right .icon{
  color:#fff;
}

自定义js

document.addEventListener("DOMContentLoaded", function () {
    const button = document.querySelector(".search-input-text .abs-right button.null");
    if (button) {
        const searchText = document.createElement("span");
        searchText.textContent = "搜索";
        searchText.classList.add("search-text");
        button.appendChild(searchText);
    }
});
© 版权声明
THE END
喜欢就支持一下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容