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

相关文章

Vue3 的 shallowRef 和 shallowReactive:优化性能

大家对 Vue3 的 ref 和 reactive 都很熟悉,那么对 shallowRef 和 shallowReactive 是否了解呢? 在编程和数据结构中,“shallow”(浅层)通常指对数据结构的最外层进行操作,而不递归地处理其内部或嵌套的数据。这种处理方式关注的是数据结构的第一层属性或元素,而忽略更深层次的嵌套内容。 1. 浅层与深层的对比 1.1 浅层(Shallow) 定义

AI绘图怎么变现?想做点副业的小白必看!

在科技飞速发展的今天,AI绘图作为一种新兴技术,不仅改变了艺术创作的方式,也为创作者提供了多种变现途径。本文将详细探讨几种常见的AI绘图变现方式,帮助创作者更好地利用这一技术实现经济收益。 更多实操教程和AI绘画工具,可以扫描下方,免费获取 定制服务:个性化的创意商机 个性化定制 AI绘图技术能够根据用户需求生成个性化的头像、壁纸、插画等作品。例如,姓氏头像在电商平台上非常受欢迎,

这15个Vue指令,让你的项目开发爽到爆

1. V-Hotkey 仓库地址: github.com/Dafrok/v-ho… Demo: 戳这里 https://dafrok.github.io/v-hotkey 安装: npm install --save v-hotkey 这个指令可以给组件绑定一个或多个快捷键。你想要通过按下 Escape 键后隐藏某个组件,按住 Control 和回车键再显示它吗?小菜一碟: <template

W外链微信推广短连接怎么做?

制作微信推广链接的难点分析 一、内容创作难度 制作微信推广链接时,首先需要创作有吸引力的内容。这不仅要求内容本身有趣、有价值,还要能够激起人们的分享欲望。对于许多企业和个人来说,尤其是那些缺乏创意和写作能力的人来说,这是制作微信推广链接的一大难点。 二、精准定位难度 微信用户群体庞大,不同用户的需求和兴趣各异。因此,制作推广链接时需要精准定位目标受众,以便更有效地吸引他们点击并分享链接

【 html+css 绚丽Loading 】000046 三才归元阵

前言:哈喽,大家好,今天给大家分享html+css 绚丽Loading!并提供具体代码帮助大家深入理解,彻底掌握!创作不易,如果能帮助到大家或者给大家一些灵感和启发,欢迎收藏+关注哦 💕 目录 📚一、效果📚二、信息💡1.简介:💡2.外观描述:💡3.使用方式:💡4.战斗方式:💡5.提升:💡6.传说: 📚三、源代码,上代码,可以直接复制使用🎥效果🗂️目录✍️

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

认识、理解、分类——acm之搜索

普通搜索方法有两种:1、广度优先搜索;2、深度优先搜索; 更多搜索方法: 3、双向广度优先搜索; 4、启发式搜索(包括A*算法等); 搜索通常会用到的知识点:状态压缩(位压缩,利用hash思想压缩)。

hdu1240、hdu1253(三维搜索题)

1、从后往前输入,(x,y,z); 2、从下往上输入,(y , z, x); 3、从左往右输入,(z,x,y); hdu1240代码如下: #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#inc

电脑桌面文件删除了怎么找回来?别急,快速恢复攻略在此

在日常使用电脑的过程中,我们经常会遇到这样的情况:一不小心,桌面上的某个重要文件被删除了。这时,大多数人可能会感到惊慌失措,不知所措。 其实,不必过于担心,因为有很多方法可以帮助我们找回被删除的桌面文件。下面,就让我们一起来了解一下这些恢复桌面文件的方法吧。 一、使用撤销操作 如果我们刚刚删除了桌面上的文件,并且还没有进行其他操作,那么可以尝试使用撤销操作来恢复文件。在键盘上同时按下“C

webm怎么转换成mp4?这几种方法超多人在用!

webm怎么转换成mp4?WebM作为一种新兴的视频编码格式,近年来逐渐进入大众视野,其背后承载着诸多优势,但同时也伴随着不容忽视的局限性,首要挑战在于其兼容性边界,尽管WebM已广泛适应于众多网站与软件平台,但在特定应用环境或老旧设备上,其兼容难题依旧凸显,为用户体验带来不便,再者,WebM格式的非普适性也体现在编辑流程上,由于它并非行业内的通用标准,编辑过程中可能会遭遇格式不兼容的障碍,导致操