跳转到主要内容
你行网

Main navigation

  • 首页
  • Drupal
  • 编程与开发
  • 数据库
  • 操作系统与应用
  • 服务器与运维
  • 社区
User account menu
  • 登录

面包屑

  1. 首页

CSS 基础学习-224 css带动画的图标搜索框

由 hrs, 2 九月, 2023

实例代码:

<!doctype html>
<html>
	<head>
		<meta charset="utf-8">
		<style>
			div{
				width:500px;
				}		

			input[type=text]{
				
				border:1px solid #afafaf;
				padding:20px 20px 20px 68px;
				border-width:2px;
				width:170px;
			box-sizing:border-box;  
			-webkit-transition:0.5s; /*chrome 浏览器平滑过渡*/
			transition: 0.5s ease-in-out;     /*平滑过渡0.5秒*/
			outline:none;        /*删除外部轮廓*/
			background-color:white;
			background-image:url("img/search.jpeg"); /* 加入图像*/
			background-position:10px 10px;   /* 图像边距*/
			background-repeat:no-repeat;   /*平铺方式,不扩展*/
			font-size:20px;
			
			}

			input:focus{
				border:2px solid green;
				width:100%;
			}
		</style>
	</head>
	<body>
		<div>
		<p>带图标的输入框:</p>
		<form accept="" name="search" target="get">	
			<input id="search" name="search" type="text" placeholder="seach.."></input>
		</form>
		</div>
	</body>
</html>

运行效果:

input-9.png
  • 登录或注册以发表评论

文章标签

  • CSS

评论

文章标签

CSS
Excel
ubuntu
php
五笔
vim
Linux
VPN
command
HTML
drupal 8
drupal 7
centos
composer
Mysql
drush
模块(module)
Drupal
JavaSrcipt
apache
drupal 9
英语
nerdtree
SEO
network
果树种植
surround
drupal10
主题(theme)
ssh
phpmyadmin
yum
二进制
权限
声音
ssl
selinux
HTML5
password
Dreamweaver
flameshot
WireGuard
翻译
颜色
uploadprogress
DDEV
firewalld
kernel
视图(views)
快捷键
gzip
xdebug
邮件验证
错误
电脑基础
ckeditor
C语言
简介
mbstring
源地址
certbot
php扩展
git
httpd
apt
电子秤
压缩解压
breadcrumb
表单
csharp
AI
短信验证
摄影
superfish
diff
重定向
网站备份
docker
drupal 11
tagclouds
java
版本号
RSS
adsense
电脑技巧
simple_adsense
端口
算法
youtube
JavaScript
cookie
badblocks
KVM
计算机基础
网站运营
RFID
VUE
zip
标签优化
gimp
form
dns
ip
mod_expires 模块
赚钱
http验证
curl
重定向,301
netstat
字段
maven
input
npm
nginx
哈希值
wps
更多

相关文章

  • 如何去掉input和button标签中间有缝隙
  • CSS 基础学习-254 css使用 opacity 定义颜色
  • CSS 基础学习-253 css使用用 HSL 值定义颜色
  • CSS 基础学习-252 css使用RGBA 值定义颜色
  • CSS 基础学习-251 css使用background-clip属性
  • CSS 基础学习-250 css使用background-origin属性
  • CSS 基础学习-249 css使用不同的属性来创建背景图像
  • CSS 基础学习-248 css全尺寸背景图像
  • CSS 基础学习-247 css使用多个背景图像
  • CSS 基础学习-246 css使用contain和cover设置背景图像
RSS源

友情链接 网站地图 版权信息 联系我们 网址导航 社区

Copyright © 2019 - 2021 你行网 版权所有  粤ICP备19072650号