六月婷婷综合激情-六月婷婷综合-六月婷婷在线观看-六月婷婷在线-亚洲黄色在线网站-亚洲黄色在线观看网站

明輝手游網中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

HTML完成移動端固定懸浮半透明搜索框

[摘要]現在互聯網已經有成千上百個網站,然而網站少不了的一個功能就是搜索,我們可以看到很多網站的搜索框各有不同,在移動端也是如此。本文我們就和大家分享一種在移動端固定在頁面頂部,半透明懸浮,能依稀看見部分輪播圖形式的搜索框。要制作這樣的搜索框,技術關鍵在于:fixed 搜索框定位opacity 設置透明度...
現在互聯網已經有成千上百個網站,然而網站少不了的一個功能就是搜索,我們可以看到很多網站的搜索框各有不同,在移動端也是如此。本文我們就和大家分享一種在移動端固定在頁面頂部,半透明懸浮,能依稀看見部分輪播圖形式的搜索框。

11.jpg

要制作這樣的搜索框,技術關鍵在于:

fixed 搜索框定位

opacity 設置透明度

Solution. 解決

首先我們定義一個 html 片段:

<!-- 搜索框 -->
<header class="bar">
  <form name="search" class="search" id="search" action="">
    <p class="search-row">
      <input type="search" name="word" id="word">
      <span class="placeholder "><span class="iconfont icon-sousuo"></span><span class="text">搜索</span></span>
    </p>
  </form>
</header>
<!-- 一個背景圖 實際上這里往往是輪播圖 -->
<p class="background">
  <img src="bg.jpg">
</p>

header 標簽為搜索框,下面的 p 為一個背景圖。

同時附上 CSS 樣式:

<style type="text/css">
body {
  margin: 0;  padding: 0;
  font-size: 14px; font-family: "microsoft yahei",'Arial', 'Verdana','Helvetica', sans-serif;
}
.bar {
  position: fixed; top: 0; left: 0; right: 0; /* 決定了搜索框置頂 */
  height: 44px; padding: 0 10px;
  background-color: #fff; opacity: 0.8; /* 搜索框半透明效果 */
  z-index: 10;
}
.bar form {
  display: block; padding: 0;margin: 0;
}
.search-row {
  position: relative;
  height: 30px; padding: 7px 0;
}
.search-row input[type=search] {
  position: absolute; top: 7px;
  height: 30px; line-height: 21px; width: 100%; padding: 10px 15px 10px 30px;
  border: 0; border-radius: 6px; outline: 0; background-color: rgba(0,0,0,0.1);
  font-size: 16px; text-align: center;
  z-index: 100;
}
.search-row .placeholder {
  position: absolute; top: 2px; left: 0; right: 0;
  display: inline-block; height: 34px; line-height: 34px;
  border: 0; border-radius: 6px;
  font-size: 16px; text-align: center; color: #999;
  z-index: 1;  
}
.search-row .placeholder .iconfont {
  display: inline-block; width: 19px; line-height: 24px; padding: 10px 0; 
  font-size: 21px; color: #666;
}
.search-row .placeholder .text {
  line-height: 40px;
  vertical-align: top;
}
.background img {
  width: 100%;
}
.active:before {
  position: absolute; top: 11px; left: 5px; right: auto;
  display: block; margin-right: 0;
  font-size: 21px;
}
.active input[type=search] {
  text-align: left
}
.active .placeholder{
  display: none
}
</style>

很長的一段 CSS 樣式,但是其核心就兩句話position: fixed; /* 決定了搜索框置頂 */ 和 background-color: #fff; opacity: 0.8; /* 搜索框半透明效果 */,其他的樣式均為了頁面的排版,排版的細節需要各位讀者自己寫一遍理解,過程可能需要花費點時間。

這樣我們就完成了一個靜態的搜索框:

11.jpg

備注:這里的搜索圖標使用了 iconfont,讀者可自行到 iconfont矢量圖標庫 下載。

至此,我們還需要通過 JS 實現一些動效:

201710170918224.gif

用于實現用戶切換輸入時「搜索」位置圖標的切換,原理很簡單,增加和移除 class 類,這些類定義了樣式。

.active:before {
  position: absolute; top: 11px; left: 5px; right: auto;
  display: block; margin-right: 0;
  font-size: 21px;
}
.active input[type=search] {
  text-align: left
}
.active .placeholder{
  display: none
}
<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>

備注:這里需要引入 jQuery,千萬別忘了!

Extension. 擴展

完整 html 代碼:

<!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">
body {
  margin: 0;  padding: 0;
  font-size: 14px; font-family: "microsoft yahei",'Arial', 'Verdana','Helvetica', sans-serif;
}
.bar {
  position: fixed; top: 0; left: 0; right: 0; /* 決定了搜索框置頂 */
  height: 44px; padding: 0 10px;
  background-color: #fff; opacity: 0.8; /* 搜索框半透明效果 */
  z-index: 10;
}
.bar form {
  display: block; padding: 0;margin: 0;
}
.search-row {
  position: relative;
  height: 30px; padding: 7px 0;
}
.search-row input[type=search] {
  position: absolute; top: 7px;
  height: 30px; line-height: 21px; width: 100%; padding: 10px 15px 10px 30px;
  border: 0; border-radius: 6px; outline: 0; background-color: rgba(0,0,0,0.1);
  font-size: 16px; text-align: center;
  z-index: 100;
}
.search-row .placeholder {
  position: absolute; top: 2px; left: 0; right: 0;
  display: inline-block; height: 34px; line-height: 34px;
  border: 0; border-radius: 6px;
  font-size: 16px; text-align: center; color: #999;
  z-index: 1;  
}
.search-row .placeholder .iconfont {
  display: inline-block; width: 19px; line-height: 24px; padding: 10px 0; 
  font-size: 21px; color: #666;
}
.search-row .placeholder .text {
  line-height: 40px;
  vertical-align: top;
}
.background img {
  width: 100%;
}
.active:before {
  position: absolute; top: 11px; left: 5px; right: auto;
  display: block; margin-right: 0;
  font-size: 21px;
}
.active input[type=search] {
  text-align: left
}
.active .placeholder{
  display: none
}
</style>
</head>
<body>
<!-- 搜索框 -->
<header class="bar">
  <form name="search" class="search" id="search" action="">
    <p class="search-row">
      <input type="search" name="word" id="word">
      <span class="placeholder "><span class="iconfont icon-sousuo"></span><span class="text">搜索</span></span>
    </p>
  </form>
</header>
<!-- 一個背景圖 實際上這里往往是輪播圖 -->
<p class="background">
  <img src="bg.jpg">
</p>
</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實現移動端固定懸浮半透明搜索框的教程,希望大家在開發中能幫助到大家。

相關推薦:

css制作好看的搜索框

如何用Js實現百度搜索框提示功能

分享8款CSS3搜索框

以上就是HTML實現移動端固定懸浮半透明搜索框的詳細內容,更多請關注php中文網其它相關文章!


網站建設是一個廣義的術語,涵蓋了許多不同的技能和學科中所使用的生產和維護的網站。




主站蜘蛛池模板: 亚洲国产成人久久99精品 | 最近新的免费韩国视频 | 天堂最新版资源www在线 | 瑟瑟久久| 日韩每日更新 | 性高湖久久久久久久久 | 小说区 亚洲 自拍 另类 | 五月天婷婷免费观看视频在线 | 亚洲成a人片77788 | 一级黄色片在线播放 | 午夜爽视频 | 亚洲高清综合 | 亚洲成a人片在线观看中文app | 日本视频播放免费线上观看 | 日本最新中文字幕 | 日韩中文字幕在线观看视频 | 色婷婷久久综合中文久久一本 | 中文字幕亚洲一区二区v@在线 | 午夜日韩视频 | 一级女性全黄久久生活片免费 | 日日摸夜夜摸狠狠摸日日碰夜夜做 | 手机亚洲第一页 | 色综久久 | 欧美性xxxx偷拍 | 欧美一级高清在线观看 | 欧美系列第一页 | 天天干狠狠操 | 亚洲风情网 | 日韩欧美亚洲综合久久影院d3 | 日本高清在线观看视频www | 中文字幕视频一区 | 青草福利在线 | 伊人影视频 | 亚洲 欧美 自拍 另类 欧美 | 伊人黄| 亚洲一区二区三区精品影院 | 日本激情一区二区三区 | 午夜性色福利视频 | 青草香蕉视频 | 婷婷99精品国产97久久综合 | 天天看天天射 |