HTML美观的搜索框怎么做?

2024-06-07 20:20

本文主要是介绍HTML美观的搜索框怎么做?,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、“融情于景”1.0

<form action="" class="search-bar"><input type="search" name="search" pattern=".*\S.*" required><button class="search-btn" type="submit"><span>Search</span></button>
</form>
* {border: 0;box-sizing: border-box;margin: 0;padding: 0;
}
:root {font-size: calc(16px + (24 - 16)*(100vw - 320px)/(1920 - 320));
}
body, button, input {font: 1em Hind, sans-serif;line-height: 1.5em;
}
body, input {color: #171717;
}
body, .search-bar {display: flex;
}
body {background: #f1f1f1;height: 100vh;
}
.search-bar input,
.search-btn, 
.search-btn:before, 
.search-btn:after {transition: all 0.25s ease-out;
}
.search-bar input,
.search-btn {width: 3em;height: 3em;
}
.search-bar input:invalid:not(:focus),
.search-btn {cursor: pointer;
}
.search-bar,
.search-bar input:focus,
.search-bar input:valid  {width: 100%;
}
.search-bar input:focus,
.search-bar input:not(:focus) + .search-btn:focus {outline: transparent;
}
.search-bar {margin: auto;padding: 1.5em;justify-content: center;max-width: 30em;
}
.search-bar input {background: transparent;border-radius: 1.5em;box-shadow: 0 0 0 0.4em #171717 inset;padding: 0.75em;transform: translate(0.5em,0.5em) scale(0.5);transform-origin: 100% 0;-webkit-appearance: none;-moz-appearance: none;appearance: none;
}
.search-bar input::-webkit-search-decoration {-webkit-appearance: none;
}
.search-bar input:focus,
.search-bar input:valid {background: #fff;border-radius: 0.375em 0 0 0.375em;box-shadow: 0 0 0 0.1em #d9d9d9 inset;transform: scale(1);
}
.search-btn {background: #171717;border-radius: 0 0.75em 0.75em 0 / 0 1.5em 1.5em 0;padding: 0.75em;position: relative;transform: translate(0.25em,0.25em) rotate(45deg) scale(0.25,0.125);transform-origin: 0 50%;
}
.search-btn:before, 
.search-btn:after {content: "";display: block;opacity: 0;position: absolute;
}
.search-btn:before {border-radius: 50%;box-shadow: 0 0 0 0.2em #f1f1f1 inset;top: 0.75em;left: 0.75em;width: 1.2em;height: 1.2em;
}
.search-btn:after {background: #f1f1f1;border-radius: 0 0.25em 0.25em 0;top: 51%;left: 51%;width: 0.75em;height: 0.25em;transform: translate(0.2em,0) rotate(45deg);transform-origin: 0 50%;
}
.search-btn span {display: inline-block;overflow: hidden;width: 1px;height: 1px;
}/* Active state */
.search-bar input:focus + .search-btn,
.search-bar input:valid + .search-btn {background: #2762f3;border-radius: 0 0.375em 0.375em 0;transform: scale(1);
}
.search-bar input:focus + .search-btn:before, 
.search-bar input:focus + .search-btn:after,
.search-bar input:valid + .search-btn:before, 
.search-bar input:valid + .search-btn:after {opacity: 1;
}
.search-bar input:focus + .search-btn:hover,
.search-bar input:valid + .search-btn:hover,
.search-bar input:valid:not(:focus) + .search-btn:focus {background: #0c48db;
}
.search-bar input:focus + .search-btn:active,
.search-bar input:valid + .search-btn:active {transform: translateY(1px);
}@media screen and (prefers-color-scheme: dark) {body, input {color: #f1f1f1;}body {background: #171717;}.search-bar input {box-shadow: 0 0 0 0.4em #f1f1f1 inset;}.search-bar input:focus,.search-bar input:valid {background: #3d3d3d;box-shadow: 0 0 0 0.1em #3d3d3d inset;}.search-btn {background: #f1f1f1;}
}

二、“融情于景”2.0

<div class="container"><input type="text" placeholder="Search..."><div class="search"></div>
</div>
* {margin: 0;padding: 0;box-sizing: border-box;
}html, body {width: 100%;height: 100%;
}body {background: #252525;
}.container {position: absolute;margin: auto;top: 0;left: 0;right: 0;bottom: 0;width: 300px;height: 100px;
}
.container .search {position: absolute;margin: auto;top: 0;right: 0;bottom: 0;left: 0;width: 80px;height: 80px;background: crimson;border-radius: 50%;transition: all 1s;z-index: 4;box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
}
.container .search:hover {cursor: pointer;
}
.container .search::before {content: "";position: absolute;margin: auto;top: 22px;right: 0;bottom: 0;left: 22px;width: 12px;height: 2px;background: white;transform: rotate(45deg);transition: all 0.5s;
}
.container .search::after {content: "";position: absolute;margin: auto;top: -5px;right: 0;bottom: 0;left: -5px;width: 25px;height: 25px;border-radius: 50%;border: 2px solid white;transition: all 0.5s;
}
.container input {font-family: "Inconsolata", monospace;position: absolute;margin: auto;top: 0;right: 0;bottom: 0;left: 0;width: 50px;height: 50px;outline: none;border: none;background: crimson;color: white;text-shadow: 0 0 10px crimson;padding: 0 80px 0 20px;border-radius: 30px;box-shadow: 0 0 25px 0 crimson, 0 20px 25px 0 rgba(0, 0, 0, 0.2);transition: all 1s;opacity: 0;z-index: 5;font-weight: bolder;letter-spacing: 0.1em;
}
.container input:hover {cursor: pointer;
}
.container input:focus {width: 300px;opacity: 1;cursor: text;
}
.container input:focus ~ .search {right: -250px;background: #151515;z-index: 6;
}
.container input:focus ~ .search::before {top: 0;left: 0;width: 25px;
}
.container input:focus ~ .search::after {top: 0;left: 0;width: 25px;height: 2px;border: none;background: white;border-radius: 0%;transform: rotate(-45deg);
}
.container input::placeholder {color: white;opacity: 0.5;font-weight: bolder;
}

这篇关于HTML美观的搜索框怎么做?的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1040201

相关文章

Java实现Excel与HTML互转

《Java实现Excel与HTML互转》Excel是一种电子表格格式,而HTM则是一种用于创建网页的标记语言,虽然两者在用途上存在差异,但有时我们需要将数据从一种格式转换为另一种格式,下面我们就来看看... Excel是一种电子表格格式,广泛用于数据处理和分析,而HTM则是一种用于创建网页的标记语言。虽然两

怎么关闭Ubuntu无人值守升级? Ubuntu禁止自动更新的技巧

《怎么关闭Ubuntu无人值守升级?Ubuntu禁止自动更新的技巧》UbuntuLinux系统禁止自动更新的时候,提示“无人值守升级在关机期间,请不要关闭计算机进程”,该怎么解决这个问题?详细请看... 本教程教你如何处理无人值守的升级,即 Ubuntu linux 的自动系统更新。来源:https://

Ubuntu系统怎么安装Warp? 新一代AI 终端神器安装使用方法

《Ubuntu系统怎么安装Warp?新一代AI终端神器安装使用方法》Warp是一款使用Rust开发的现代化AI终端工具,该怎么再Ubuntu系统中安装使用呢?下面我们就来看看详细教程... Warp Terminal 是一款使用 Rust 开发的现代化「AI 终端」工具。最初它只支持 MACOS,但在 20

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情

LinuxMint怎么安装? Linux Mint22下载安装图文教程

《LinuxMint怎么安装?LinuxMint22下载安装图文教程》LinuxMint22发布以后,有很多新功能,很多朋友想要下载并安装,该怎么操作呢?下面我们就来看看详细安装指南... linux Mint 是一款基于 Ubuntu 的流行发行版,凭借其现代、精致、易于使用的特性,深受小伙伴们所喜爱。对

macOS怎么轻松更换App图标? Mac电脑图标更换指南

《macOS怎么轻松更换App图标?Mac电脑图标更换指南》想要给你的Mac电脑按照自己的喜好来更换App图标?其实非常简单,只需要两步就能搞定,下面我来详细讲解一下... 虽然 MACOS 的个性化定制选项已经「缩水」,不如早期版本那么丰富,www.chinasem.cn但我们仍然可以按照自己的喜好来更换

React实现原生APP切换效果

《React实现原生APP切换效果》最近需要使用Hybrid的方式开发一个APP,交互和原生APP相似并且需要IM通信,本文给大家介绍了使用React实现原生APP切换效果,文中通过代码示例讲解的非常... 目录背景需求概览技术栈实现步骤根据 react-router-dom 文档配置好路由添加过渡动画使用

Ubuntu 怎么启用 Universe 和 Multiverse 软件源?

《Ubuntu怎么启用Universe和Multiverse软件源?》在Ubuntu中,软件源是用于获取和安装软件的服务器,通过设置和管理软件源,您可以确保系统能够从可靠的来源获取最新的软件... Ubuntu 是一款广受认可且声誉良好的开源操作系统,允许用户通过其庞大的软件包来定制和增强计算体验。这些软件

Ubuntu 24.04 LTS怎么关闭 Ubuntu Pro 更新提示弹窗?

《Ubuntu24.04LTS怎么关闭UbuntuPro更新提示弹窗?》Ubuntu每次开机都会弹窗提示安全更新,设置里最多只能取消自动下载,自动更新,但无法做到直接让自动更新的弹窗不出现,... 如果你正在使用 Ubuntu 24.04 LTS,可能会注意到——在使用「软件更新器」或运行 APT 命令时,