实战演练---花里胡哨搜索框【b站视频的代码】

【实战演练---花里胡哨搜索框【b站视频的代码】】
文章目录

      • 运行效果
      • html代码
      • css代码

运行效果
实战演练---花里胡哨搜索框【b站视频的代码】
文章图片

html代码
search - 锐客网

css代码
body{ margin: 0; padding: 0; background: #e84118; } .searchBox{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #2f3640; height: 40px; border-radius: 40px; padding: 10px; } .searchBox:hover > .searchTxt{ width: 240px; padding: 0 6px; } .searchBox:hover > .searchBtn{ background: white; } .searchBtn{ color: #e84118; float: right; width: 40px; height: 40px; border-radius: 50%; background: #2f3640; display: flex; justify-content: center; align-items: center; transition: 0.4s; } .searchTxt{ border: none; background: none; outline: none; float: left; padding: 0; color: white; font-size: 16px; transition: 0.4s; line-height: 40px; width: 0px; }

    推荐阅读