jQuery可伸縮搜尋框程式碼例項

antzone發表於2017-04-18

分享一段程式碼例項,它實現了可伸縮搜尋框效果。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
* {
  margin: 0;
  padding: 0;
}
body {
  margin: 0 auto;
  background-color: #333;
}
.search {
  width: 510px;
  margin: 0 auto;
  margin-top: 225px;
}
.q {
  width: 300px;
  height: 75px;
  line-height: 75px;
  float: right;
  border-radius: 25px;
  text-indent: 1em;
  font-size: 25px;
  color: #336699;
}
.sub {
  width: 75px;
  height: 79px;
  line-height: 79px;
  float: right;
  border-radius: 10px;
  font-size: 25px;
  color: #336699;
  cursor: pointer;
}
</style>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script>
$(document).ready(function () {
  $(".q").mouseover(function () {
    $(this).animate({ width: '425px' }, 500);
  });
  $(".q").focusout(function () {
    $(this).animate({ width: '300px' }, 500);
  });
});
  </script>
</head>
<body>
  <div class="search">
    <form>
      <input type="submit" name="search" value="GO" class="sub" />
      <input type="text" name="search" class="q" value="螞蟻部落歡迎您" />
 
    </form>
  </div>
</body>
</html>

相關文章