Bootstrap页面文字搜索特效js和jquery代码

版权:原创 更新时间:1年以上
[该文章底部包含文件资源,可根据自己情况,决定是否下载资源使用,时间>金钱,如有需要,立即查看资源]

以下是 Bootstrap页面文字搜索特效js和jquery代码 的示例演示效果:

当前平台(PC电脑)
  • 平台:

部分效果截图:

Bootstrap页面文字搜索特效js和jquery代码

HTML代码(index.html):

<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> 
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bootstrap页面文字搜索代码</title>
<link href="css/bootstrap.min.css"  type="text/css" rel="stylesheet">
<link href="css/jumbotron-narrow.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="header clearfix">
  <h3 class="text-muted">Full text search</h3>
</div>

<div class="jumbotron">
  <form>
	<div class="form-group form-group-search">
	  <h1><label for="exampleInputEmail1">搜索内容</label></h1>
	  <input type="search" class="form-control" id="search" placeholder="请输入本页面内容">

	  <div class="search-result" style="display:none">
		<h4>标题</h4>
		<ul class="result-section">
		  <li><a href="">dsfsdfsdf</a></li>
		  <li><a href="">sdfsdf</a></li>

		</ul>
		<h4>内容</h4>
		<ul class="result-content">
		  <li><a href="">sdfsdf</a></li>
		  <li><a href="">sdfsd</a></li>

		</ul>
	  </div>
	</div>

  </form>
  <p class="lead">单页面全文搜索插件,支持瞄点跳转,依赖Jquery、bootstrap。</p>
</div>

<div class="row marketing">
  <div class="col-lg-12" id="result-list">
	<h4 id="a">javascript前言</h4>
	<p>一直在学习javascript,也有看过《犀利开发Jquery内核详解与实践》,对这本书的评价只有两个字犀利,可能是对javascript理解的还不够透彻异或是自己太笨,更多的是自己不擅于思考懒得思考以至于里面说的一些精髓都没有太深入的理解。 鉴于想让自己有一个提升,进不了一个更加广阔的天地,总得找一个属于自己的居所好好生存,所以平时会有意无意的去积累一些使用jQuerry的常用知识,特别是对于性能要求这一块,总是会想是不是有更好的方式来实现。 下面是我总结的一些小技巧,仅供参考。(我先会说一个总标题,然后用一小段话来说明这个意思
	  再最后用一个demo来简单言明)
	</p>

	<h4 id="b">避免全局查找</h4>
	<p>在一个函数中会用到全局对象存储为局部变量来减少全局查找,因为访问局部变量的速度要比访问全局变量的速度更快些
	  <pre>
	function search() {
		//当我要使用当前页面地址和主机域名
		alert(window.location.href + window.location.host);
	}
	//最好的方式是如下这样  先用一个简单变量保存起来
	function search() {
		var location = window.location;
		alert(location.href + location.host);
	}
</pre>
	</p>

	<h4 id="c">定时器</h4>
	<p>
	  如果针对的是不断运行的代码,不应该使用setTimeout,而应该是用setInterval,因为setTimeout每一次都会初始化一个定时器,而setInterval只会在开始的时候初始化一个定时器

	  <pre>
var timeoutTimes = 0;
 function timeout() {
	 timeoutTimes++;
	 if (timeoutTimes < 10) {
		 setTimeout(timeout, 10);
	 }
 }
 timeout();
 //可以替换为:
 var intervalTimes = 0;
 function interval() {
	 intervalTimes++;
	 if (intervalTimes >= 10) {
		 clearInterval(interv);
	 }
 }
 var interv = setInterval(interval, 10);
</pre>
	</p>

	<h4 id="e">字符串连接</h4>
	<p>
	  如果要连接多个字符串,应该少使用+=,如 s+=a; s+=b; s+=c; 应该写成s+=a + b + c; 而如果是收集字符串,比如多次对同一个字符串进行+=操作的话,最好使用一个缓存,使用JavaScript数组来收集,最后使用join方法连接起来
	  <pre>
var buf = [];
  for (var i = 0; i < 100; i++) {
	  buf.push(i.toString());
  }
  var all = buf.join("");
</pre>
	</p>


	<h4>避免with语句</h4>
	<p>和函数类似 ,with语句会创建自己的作用域,因此会增加其中执行的代码的作用域链的长度,由于额外的作用域链的查找,在with语句中执行的代码肯定会比外面执行的代码要慢,在能不使用with语句的时候尽量不要使用with语句。
	  <pre>
with (a.b.c.d) {
		property1 = 1;
		property2 = 2;
	}
	//可以替换为:
	var obj = a.b.c.d;
	obj.property1 = 1;
	obj.property2 = 2;
</pre>
	</p>


	<h4 id="f">各种类型转换</h4>
	<p><pre>
	  var myVar = "3.14159",
	str = "" + myVar, //  to string
	i_int = ~ ~myVar,  //  to integer
	f_float = 1 * myVar,  //  to float
	b_bool = !!myVar,  /*  to boolean - any string with length
							and any number except 0 are true */
	array = [myVar];  //  to array
	</pre></p>

	<h4 id="g">多个类型声明</h4>
	<p>在JavaScript中所有变量都可以使用单个var语句来声明,这样就是组合在一起的语句,以减少整个脚本的执行时间,就如上面代码一样,上面代码格式也挺规范,让人一看就明了。

	</p>
  </div>


</div>
<!-- /container -->
</div>

<script src="js/jquery-1.9.1.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/anchor.js"></script>
<script type="text/javascript" src="js/jquery.full-search.js"></script>
<script type="text/javascript">
$(function() {
  
  $('#search').fullsearch({
	highlight: true,
	search_data: ".search-result",
	search_title: ".result-section",
	search_content: ".result-content",
	list: "#result-list",
	nodata: "未找到相关数据",
  });


});
</script>
</body>
</html>









JS代码(anchor.js):

/** * anchor.js - jQuery Plugin * Jump to a specific section smoothly * * @dependenciesjQuery v1.5.0 http://jquery.com * @authorCornel Boppart <cornel@bopp-art.com> * @copyrightAuthor * @version1.0.6 (06/01/2016) */
;
	(function ($){
	window.anchor ={
	/** * Default settings * */
settings:{
	transitionDuration:2000,transitionTimingFunction:'swing',labels:{
	error:'Couldn\'t find any section'}
}
,/** * Initializes the plugin * * @param{
	object}
optionsThe plugin options (Merged with default settings) * @return{
	object}
thisThe current element itself */
init:function (options){
	// Apply merged settings to the current object$(this).data('settings',$.extend(anchor.settings,options));
	return this.each(function (){
	var $this = $(this);
	$this.unbind('click').click(function (event){
	event.preventDefault();
	anchor.jumpTo(anchor.getTopOffsetPosition($this),$this.data('settings'));
}
);
}
);
}
,/** * Gets the top offset position * * @param{
	object}
$objectThe root object to get sections position from * @return{
	int}
topOffsetPositionThe top offset position */
getTopOffsetPosition:function ($object){
	var href = $object.attr('href'),$section = $($(href).get(0)),documentHeight = $(document).height(),browserHeight = $(window).height();
	if (!$section || $section.length < 1){
	throw new ReferenceError(anchor.settings.labels.error);
}
if (($section.offset().top + browserHeight) > documentHeight){
	return documentHeight - browserHeight;
}
else{
	return $section.offset().top;
}
}
,/** * Jumps to the specific position * * @param{
	int}
topOffsetPositionThe top offset position * @param{
	object}
settingsThe object specific settings * @return{
	void}
*/
jumpTo:function (topOffsetPosition,settings){
	var $viewport = $('html,body');
	$viewport.animate({
	scrollTop:topOffsetPosition}
,settings.transitionDuration,settings.transitionTimingFunction);
	// Stop the animation immediately,if a user manually scrolls during the animation.$viewport.bind('scroll mousedown DOMMouseScroll mousewheel keyup',function(event){
	if (event.which > 0 || event.type === 'mousedown' || event.type === 'mousewheel'){
	$viewport.stop().unbind('scroll mousedown DOMMouseScroll mousewheel keyup');
}
}
);
}
}
;
	$.fn.anchor = function (method){
	// Method calling logicif (anchor[method]){
	return anchor[method].apply(this,Array.prototype.slice.call(arguments,1));
}
else if (typeof method === 'object' || !method){
	return anchor.init.apply(this,arguments);
}
else{
	return $.error('Method ' + method + ' does not exist on jQuery.anchor');
}
}
;
}
)(jQuery);
	

JS代码(npm.js):

// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.require('../../js/transition.js')require('../../js/alert.js')require('../../js/button.js')require('../../js/carousel.js')require('../../js/collapse.js')require('../../js/dropdown.js')require('../../js/modal.js')require('../../js/tooltip.js')require('../../js/popover.js')require('../../js/scrollspy.js')require('../../js/tab.js')require('../../js/affix.js')

CSS代码(jumbotron-narrow.css):

/* Space out content a bit */
body{padding-top:20px;padding-bottom:20px;background:#494A5F;color:#D5D6E2;font-weight:500;font-size:1.05em;font-family:"Microsoft YaHei","����","Segoe UI","Lucida Grande",Helvetica,Arial,sans-serif,FreeSans,Arimo;}
a{color:#2fa0ec;text-decoration:none;outline:none;}
a:hover,a:focus{color:#74777b;}
}
/* Everything but the jumbotron gets side spacing for mobile first views */
.header,.marketing,.footer{padding-right:15px;padding-left:15px;}
/* Custom page header */
.header{padding-bottom:20px;border-bottom:1px solid #e5e5e5;}
/* Make the masthead heading the same height as the navigation */
.header h3{margin-top:0;margin-bottom:0;line-height:40px;}
/* Custom page footer */
.footer{padding-top:19px;color:#777;border-top:1px solid #e5e5e5;}
/* Customize container */
@media (min-width:768px){.container{max-width:730px;}
}
.container-narrow > hr{margin:30px 0;}
/* Main marketing message and sign up button */
.jumbotron{text-align:center;border-bottom:1px solid #e5e5e5;}
.jumbotron .btn{padding:14px 24px;font-size:21px;}
/* Supporting marketing content */
.marketing{margin:40px 0;}
.marketing p + h4{margin-top:28px;}
/* Responsive:Portrait tablets and up */
@media screen and (min-width:768px){/* Remove the padding we set earlier */
 .header,.marketing,.footer{padding-right:0;padding-left:0;}
/* Space out the masthead */
 .header{margin-bottom:30px;}
/* Remove the bottom border on the jumbotron for visual effect */
 .jumbotron{border-bottom:0;}
}
.form-group-search{position:relative;}
.search-result{width:360px;border:1px solid #A4A4A4;position:absolute;top:117px;left:0px;background:#fff;z-index:1;}
.search-result h4{color:#fff;background:#5cb85c;padding:4px 10px;margin:0;font-size:14px;}
.search-result ul{padding:0px;list-style:none;}
.search-result li{border-bottom:1px solid #A4A4A4;}
.search-result li:last-of-type{border:0 none;}
.search-result li a{display:block;padding:6px 10px;font-size:12px;color:#979797;}
mark{color:#337ab7;font-size:16px;font-weight:bold;}
.search-result li a:hover{background:#ccc;color:#fff;}
.search-result ul{margin:0;}
附件:下载该文件资源,减少时间成本(增值服务)
留言
该资源可下载
File Source
.rar
173.79 KB
jquery特效1
最新结算
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jquery虚拟键盘中文打字效果js代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
HTML5实现CSS滤镜图片切换特效代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
jQuery头像裁剪插件cropbox js代码
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery头像裁剪插件cropbox js代码
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 2.31¥ 状态: 待结算 详细>
CSS3制作3D图片立方体旋转特效
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
jQuery+css3实现信封效果
类型: .rar 金额: CNY 0.29¥ 状态: 待结算 详细>
我们力求给您提供有用的文章,再此基础上,会附加营收资源,不做任何广告,让平台可以更好发展 若您发现您的权利被侵害,或使用了您的版权,请发邮件联系 sunlifel@foxmail.com ggbig觉得 : 不提供源码的文章不是好文章
合作伙伴
联系我们
  • QQ:21499807
  • 邮箱:sunlifel@foxmail.com
  • QQ扫一扫加QQ
    QQ扫一扫
Copyright 2023-2024 ggbig.com·皖ICP备2023004211号-1
打赏文章