设为首页收藏本站
天天打卡

 找回密码
 立即注册
搜索
查看: 92|回复: 17

HTML实现移动端固定悬浮半透明搜索框

[复制链接]

2

主题

60

回帖

163

积分

注册会员

积分
163
发表于 2024-4-20 10:29:16 | 显示全部楼层 |阅读模式
Question. 问题
在移动端商城系统中,我们常常看到位于页面顶部有一个搜索框,这类搜索框博主比较喜欢的是固定在页面顶部,半透明悬浮,能依稀看见部分轮播图的形式。

要制作这样的搜索框,技术关键在于:
       
  • fixed 搜索框定位   
  • opacity 设置透明度
Solution. 解决
首先我们定义一个 html 片段:
  1. <!-- 搜索框 -->
  2. <header class="bar">
  3.   <form name="search" class="search" id="search" action="">
  4.     <div class="search-row">
  5.       <input type="search" name="word" id="word">
  6.       <span class="placeholder "><span class="iconfont icon-sousuo"></span><span class="text">搜索</span></span>
  7.     </div>
  8.   </form>
  9. </header>
  10. <!-- 一个背景图 实际上这里往往是轮播图 -->
  11. <div class="background">
  12.   <img src="bg.jpg">
  13. </div>
复制代码
header 标签为搜索框,下面的 div 为一个背景图。
同时附上 CSS 样式:
  1. <style type="text/css">
  2. body {
  3.   margin: 0;  padding: 0;
  4.   font-size: 14px; font-family: "microsoft yahei",'Arial', 'Verdana','Helvetica', sans-serif;
  5. }
  6. .bar {
  7.   position: fixed; top: 0; left: 0; right: 0; /* 决定了搜索框置顶 */
  8.   height: 44px; padding: 0 10px;
  9.   background-color: #fff; opacity: 0.8; /* 搜索框半透明效果 */
  10.   z-index: 10;
  11. }
  12. .bar form {
  13.   display: block; padding: 0;margin: 0;
  14. }
  15. .search-row {
  16.   position: relative;
  17.   height: 30px; padding: 7px 0;
  18. }
  19. .search-row input[type=search] {
  20.   position: absolute; top: 7px;
  21.   height: 30px; line-height: 21px; width: 100%; padding: 10px 15px 10px 30px;
  22.   border: 0; border-radius: 6px; outline: 0; background-color: rgba(0,0,0,0.1);
  23.   font-size: 16px; text-align: center;
  24.   z-index: 100;
  25. }
  26. .search-row .placeholder {
  27.   position: absolute; top: 2px; left: 0; right: 0;
  28.   display: inline-block; height: 34px; line-height: 34px;
  29.   border: 0; border-radius: 6px;
  30.   font-size: 16px; text-align: center; color: #999;
  31.   z-index: 1;  
  32. }
  33. .search-row .placeholder .iconfont {
  34.   display: inline-block; width: 19px; line-height: 24px; padding: 10px 0;
  35.   font-size: 21px; color: #666;
  36. }
  37. .search-row .placeholder .text {
  38.   line-height: 40px;
  39.   vertical-align: top;
  40. }
  41. .background img {
  42.   width: 100%;
  43. }
  44. .active:before {
  45.   position: absolute; top: 11px; left: 5px; right: auto;
  46.   display: block; margin-right: 0;
  47.   font-size: 21px;
  48. }
  49. .active input[type=search] {
  50.   text-align: left
  51. }
  52. .active .placeholder{
  53.   display: none
  54. }
  55. </style>
复制代码
很长的一段 CSS 样式,但是其核心就两句话position: fixed; /* 决定了搜索框置顶 */ 和 background-color: #fff; opacity: 0.8; /* 搜索框半透明效果 */,其他的样式均为了页面的排版,排版的细节需要各位读者自己写一遍理解,过程可能需要花费点时间。
这样我们就完成了一个静态的搜索框:

备注:这里的搜索图标使用了 iconfont,读者可自行到 iconfont矢量图标库 下载。
至此,我们还需要通过 JS 实现一些动效:

用于实现用户切换输入时「搜索」位置图标的切换,原理很简单,增加和移除 class 类,这些类定义了样式。
  1. .active:before {
  2.   position: absolute; top: 11px; left: 5px; right: auto;
  3.   display: block; margin-right: 0;
  4.   font-size: 21px;
  5. }
  6. .active input[type=search] {
  7.   text-align: left
  8. }
  9. .active .placeholder{
  10.   display: none
  11. }
  12. <script type="text/javascript">
  13. /* 输入框获取到焦点 表示用户正在输入 */
  14. $("#word").focusin(function() {
  15.   $(".search-row").addClass("active iconfont icon-sousuo");
  16. });
  17. /* 输入框失去焦点 表示用户输入完毕 */
  18. $("#word").focusout(function() {
  19.   /* 判断用户是否有内容输入 */
  20.   if ($(this).val()=="") {
  21.     /* 没有内容输入 改变样式 */
  22.     $(".search-row").removeClass("active iconfont icon-sousuo");
  23.   } else {
  24.     /* 有内容输入 保持样式 并提交表单 */
  25.     $("#search").submit();
  26.   }
  27. });
  28. </script>
复制代码
备注:这里需要引入 jQuery,千万别忘了!
Extension. 扩展
完整 html 代码:
  1. <!DOCTYPE html><html><head><title></title><meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no"><link rel="stylesheet" type="text/css" href="iconfont/iconfont.css"><script type="text/javascript" src="jquery-1.11.1.min.js"></script><style type="text/css">
  2. body {
  3.   margin: 0;  padding: 0;
  4.   font-size: 14px; font-family: "microsoft yahei",'Arial', 'Verdana','Helvetica', sans-serif;
  5. }
  6. .bar {
  7.   position: fixed; top: 0; left: 0; right: 0; /* 决定了搜索框置顶 */
  8.   height: 44px; padding: 0 10px;
  9.   background-color: #fff; opacity: 0.8; /* 搜索框半透明效果 */
  10.   z-index: 10;
  11. }
  12. .bar form {
  13.   display: block; padding: 0;margin: 0;
  14. }
  15. .search-row {
  16.   position: relative;
  17.   height: 30px; padding: 7px 0;
  18. }
  19. .search-row input[type=search] {
  20.   position: absolute; top: 7px;
  21.   height: 30px; line-height: 21px; width: 100%; padding: 10px 15px 10px 30px;
  22.   border: 0; border-radius: 6px; outline: 0; background-color: rgba(0,0,0,0.1);
  23.   font-size: 16px; text-align: center;
  24.   z-index: 100;
  25. }
  26. .search-row .placeholder {
  27.   position: absolute; top: 2px; left: 0; right: 0;
  28.   display: inline-block; height: 34px; line-height: 34px;
  29.   border: 0; border-radius: 6px;
  30.   font-size: 16px; text-align: center; color: #999;
  31.   z-index: 1;  
  32. }
  33. .search-row .placeholder .iconfont {
  34.   display: inline-block; width: 19px; line-height: 24px; padding: 10px 0;
  35.   font-size: 21px; color: #666;
  36. }
  37. .search-row .placeholder .text {
  38.   line-height: 40px;
  39.   vertical-align: top;
  40. }
  41. .background img {
  42.   width: 100%;
  43. }
  44. .active:before {
  45.   position: absolute; top: 11px; left: 5px; right: auto;
  46.   display: block; margin-right: 0;
  47.   font-size: 21px;
  48. }
  49. .active input[type=search] {
  50.   text-align: left
  51. }
  52. .active .placeholder{
  53.   display: none
  54. }
  55. </style></head><body><!-- 搜索框 -->
  56. <header class="bar">
  57.   <form name="search" class="search" id="search" action="">
  58.     <div class="search-row">
  59.       <input type="search" name="word" id="word">
  60.       <span class="placeholder "><span class="iconfont icon-sousuo"></span><span class="text">搜索</span></span>
  61.     </div>
  62.   </form>
  63. </header>
  64. <!-- 一个背景图 实际上这里往往是轮播图 -->
  65. <div class="background">
  66.   <img src="bg.jpg">
  67. </div></body><script type="text/javascript">/* 输入框获取到焦点 表示用户正在输入 */$("#word").focusin(function() {  $(".search-row").addClass("active iconfont icon-sousuo");});/* 输入框失去焦点 表示用户输入完毕 */$("#word").focusout(function() {  /* 判断用户是否有内容输入 */  if ($(this).val()=="") {    /* 没有内容输入 改变样式 */    $(".search-row").removeClass("active iconfont icon-sousuo");  } else {    /* 有内容输入 保持样式 并提交表单 */    $("#search").submit();  }});</script></html>
复制代码
总结
以上所述是小编给大家介绍的HTML实现移动端固定悬浮半透明搜索框,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
  • 打卡等级:无名新人
  • 打卡总天数:1
  • 打卡月天数:0
  • 打卡总奖励:1
  • 最近打卡:2024-04-30 12:05:46

3

主题

43

回帖

153

积分

注册会员

积分
153
发表于 2024-4-27 08:18:12 | 显示全部楼层
保持尊重和礼貌对待其他成员是必要的。
发表于 2024-5-6 11:47:17 | 显示全部楼层
666666666666666666

0

主题

56

回帖

114

积分

注册会员

积分
114
发表于 2024-5-22 10:19:40 | 显示全部楼层
666666666666

2

主题

43

回帖

130

积分

注册会员

积分
130
发表于 2024-5-27 20:02:05 | 显示全部楼层
666666666666666666

0

主题

37

回帖

75

积分

注册会员

积分
75
发表于 2024-5-29 10:02:53 | 显示全部楼层
我不太确定,可能需要再确认一下。

1

主题

59

回帖

141

积分

注册会员

积分
141
发表于 2024-6-16 16:53:48 | 显示全部楼层
友善的讨论氛围是非常重要的。

0

主题

47

回帖

95

积分

注册会员

积分
95
发表于 2024-8-28 14:56:47 | 显示全部楼层
你的信息来源是?我想了解更多。

2

主题

69

回帖

179

积分

注册会员

积分
179
发表于 2024-9-5 06:42:49 | 显示全部楼层
每日一回

1

主题

62

回帖

148

积分

注册会员

积分
148
发表于 2024-9-6 00:18:19 | 显示全部楼层
我们一起努力,共同解决问题吧。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|爱云论坛 - d.taiji888.cn - 技术学习 免费资源分享 ( 蜀ICP备2022010826号 )|天天打卡

GMT+8, 2024-11-15 11:50 , Processed in 0.107519 second(s), 28 queries .

Powered by i云网络 Licensed

© 2023-2028 正版授权

快速回复 返回顶部 返回列表