jQuery+HTML5弹出创意搜索框层

效果体验:http://hovertree.com/texiao/jquery/26/

本效果适用于移动设备,可以使用手机等浏览效果。

代码下载:http://hovertree.com/h/bjaf/e14uccpw.htm

HTML代码如下:

 1 <!doctype html>
 2 <html lang="zh">
 3 <head>
 4 <meta charset="UTF-8">
 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 6 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
 7 <title>jQuery+CSS3创意搜索框特效 - 何问起</title>
 8 <link rel="stylesheet" type="text/css" href="http://hovertree.com/texiao/jquery/26/css/default.css" />
 9 <!--必要样式-->
10 <link rel="stylesheet" type="text/css" href="http://hovertree.com/texiao/jquery/26/css/search-form.css" />
11
12 </head>
13 <body>
14 <div>
15 <a href="http://hovertree.com/">首页</a> <a href="http://hovertree.com/texiao/">特效</a> <a href="http://hovertree.com/h/bjaf/sousuokuang.htm">原文</a>
16 </div>
17 <form onSubmit="submitFn(this, event);" name="yestop">
18 <div class="search-wrapper">
19 <div class="input-holder">
20 <input type="text" class="search-input" placeholder="请输入关键词" name="hewenqi" />
21 <input type="hidden" name="q" />
22 <button class="search-icon" onClick="searchToggle(this, event);"><span></span></button>
23 </div>
24 <span class="close" onClick="searchToggle(this, event);"></span>
25 <div class="result-container">
26
27 </div>
28 </div>
29 </form>
30
31 <script src="http://hovertree.com/ziyuan/jquery/jquery-1.12.0.min.js" type="text/javascript"></script>
32 <script type="text/javascript" src="http://hovertree.com/texiao/jquery/26/js/hovertreesearch.js"></script>
33 </body>
34 </html>

其中hovertreesearch.js的代码如下:

 1 function searchToggle(obj, evt) {
 2 var container = $(obj).closest(‘.search-wrapper‘);
 3
 4 if (!container.hasClass(‘active‘)) {
 5 container.addClass(‘active‘);
 6 evt.preventDefault();
 7 }
 8 else if (container.hasClass(‘active‘) && $(obj).closest(‘.input-holder‘).length == 0) {
 9 container.removeClass(‘active‘);
10 // clear input
11 container.find(‘.search-input‘).val(‘‘);
12 // clear and hide result container when we press close
13 container.find(‘.result-container‘).fadeOut(100, function () { $(this).empty(); });
14 }
15 }
16
17 function submitFn(obj, evt) {
18 var value = $(obj).find(‘.search-input‘).val().trim();
19
20 var _html = "您搜索的关键词: ";
21 if (!value.length) {
22 _html = "关键词不能为空。";
23 }
24 else {
25 window.open("http://cn.bi" + "ng.com/search?q=site%3Ahove" + "rtree.com " + value + "&hewenqi=yestop");
26 _html += "<b>" + value + "</b>";
27 }
28
29 $(obj).find(‘.result-container‘).html(‘<span>‘ + _html + ‘</span>‘);
30 $(obj).find(‘.result-container‘).fadeIn(100);
31
32 evt.preventDefault();
33 }

更多特效:http://www.cnblogs.com/roucheng/p/texiao.html

时间: 2024-10-18 17:04:56

jQuery+HTML5弹出创意搜索框层的相关文章

jquery实现弹出可移动层代码

iframe.html页面 <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>弹窗显示</title></head><body><div id="container" style="overflow:hidden;"

用jQuery解决弹出层的问题

在BS 项目中 经常需要用到这种弹出层.做这种弹出层一般都会遇到下面几个问题:0,弹出层必须定义在input的下边显示.1,点击input弹出div层.2,点击div层外面任何地方,关闭div层.3,ie6下,div层与下拉框的优先级问题. 下面这个例子就是解决这些问题的,大家可以参考参考,有什么更好的解决方案,请留言. 超级简单版 演示:http://cssrain.cn/demo/popDiv/easyPopDiv.html 实例版 演示:http://cssrain.cn/demo/pop

一个基于jQuery的弹出层插件XYTips

效果预览:http://www.juheweb.com/js/tc/80.html 标签: jQuery [1].[代码] [JavaScript]代码 跳至 [1] ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58

jQuery Dialog弹出层对话框插件

Dialog.js的相关注释已经添加,可以按照注释,进行相关样式的修改,适用于自定义的各个系统! dialog.js 1 /** 2 * jQuery的Dialog插件. 3 * 4 * @param object content 5 * @param object options 选项. 6 * @return 7 */ 8 function Dialog(content, options) 9 { 10 var defaults = { // 默认值. 11 title:'标题', // 标

jquery实现弹出即消失的提示层

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <sc

jQuery.reveal弹出层

jQuery.reveal弹出层使用 最近用到弹出层,还得自定义UI,原本用的artDialog太庞大,不合适了,于是就找到了这个东西,又小又好用,基础的弹出遮罩都有了,想要什么还不是Coder自己说了算. 这个插件是基于Jquery实现的,非常小,插件本身只有3K多一点,用起来也算简单明了. 废话不说了.上Demo 首先是引用部分: Html->head: <head> <meta charset="utf-8" /> <title>Reve

jquery 简单弹出层

预定义html代码:没有 所有代码通过js生成和移除. 预定义css /* 基本弹出层样式 */ .my-popup-overlay { width:100%; height:auto; /* width height is defined by javascript */ position: absolute; top:0; left: 0; z-index: 1000; background-color: #000; opacity: 0.2; *filter:alpha(opacity=2

jquery 简单弹出层(转)

预定义html代码:没有 所有代码通过js生成和移除. 预定义css /* 基本弹出层样式 */ .my-popup-overlay { width:100%; height:auto; /* width height is defined by javascript */ position: absolute; top:0; left: 0; z-index: 1000; background-color: #000; opacity: 0.2; *filter:alpha(opacity=2

jQuery渐变弹出层

css: [css]#race{display:block;width:200px;height:50px;line-height:50px;text-align:center;background:#CCC;border:#555 1px solid;} .raceShow{border:solid 1px #ccc;position:absolute;display:none;width:300px;height:100px;padding:5px;font-size:12px;}[/css