一个仿糯米弹框效果demo_jquery

代码如下:

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tabs</title>
<style type="text/css">
/* Remove margin padding */
body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td { margin:0; padding:0; } 

/* Default Font */
body,button,input,select,textarea { font:12px/1.5 \5b8b\4f53,arial,sans-serif; }
h1,h2,h3,h4,h5,h6 { font-size:100%; }
address,cite,dfn,em,var { font-style:normal; }
code,kbd,pre,samp { font-family:courier new,courier,monospace; }
small { font-size:12px; }
ul,ol { list-style:none; }
a { text-decoration:none; }
a:hover { text-decoration:underline; }
sup { vertical-align:text-top; }
sub { vertical-align:text-bottom; }
legend { color:#000; }
fieldset,img { border:0; }
button,input,select,textarea{ font-size:100%; }
table { border-collapse:collapse; border-spacing:0; } 

.col-main{ float:left; width:100%; min-height:1px; }
.col-sub,.col-extra { float:left; }
.layout:after,.main-wrap:after,.col-sub:after,.col-extra:after { content:'\20'; display:block; height:0; clear:both; }
.layout,.main-wrap,.col-sub,.col-extra { zoom:1; } 

/* Common Features */
.hidden { display:none; }
.invisible { visibility:hidden; } 

/* Remove Float */
.clear { display:block; height:0; overflow:hidden; clear:both; }
.clearfix:after { content:'\20'; display:block; height:0; clear:both; }
.clearfix { *zoom:1; } 

/* For non ie browsers also display the vertical scroll bar by default, to prevent the flicker caused by the scroll bar */
html { overflow-y:scroll; } 

/* Default link styles */
a:link {color: #003399; }
a:visited {color: #123689;}
a:hover {color: #FF6600;}
</style>
</head>
<body> 

<style type="text/css">
body { height:1000px; }
.dialog-wrap, .dialog { display:none; }
.dialog-wrap { position:absolute; top:0px; left:0px; width:100%; z-index:99; background:#000; }
.dialog {
border:10px;
background:url(images/welcome91981.png) no-repeat;
z-index:199;
position:fixed;
_position:absolute;
width:451px;
height:313px;
top:50%;
left:50%;
margin:-156px 0px 0px -225px;
border-radius:10px;text-align:left;
}
.dialog .city-box { position:relative; width:100%; height:100% }
.dialog .close { position:absolute; width:18px; height:18px; top:16px; right:16px; z-index:205; }
.dialog .close a { display:block; width:100%; height:100%; } 

.cityBox{position:absolute;cursor:pointer;top:143px;left:212px;height:30px;line-height:30px;font-size:16px;color:#f4396d;padding:0 30px 0 10px;display:inline-block; z-index:200; }
.cityBox span{width:90px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;display:inline-block}
.hotCityBox{position:absolute;width:272px;top:160px;left:170px;display:none;z-index:200;}
.togle{color:#fff;position:absolute;left:50%;font-size:28px;z-index:200;}
.togleborder{position:absolute;left:50%;font-size:28px;color:#ddd;top:3px;z-index:200;}
.hotCityList{background:#fff;border-radius:5px;box-shadow:1px 1px 1px #333;top:22px;position:absolute;width:270px;border:1px solid #ddd; z-index:202;}
.hotCityList p{padding:5px 0}
.hotCityList p a{padding:0 8px;height:22px;line-height:22px;color:#333;font-size:14px;margin:3px 5px;text-align:center;display:inline-block;float:left}
.hotCityList p a:hover{background:#f55583;color:#fff;text-decoration:none}
.moreCity{border-top:1px solid #c6c6c6;height:30px;line-height:30px;text-align:right;}
.moreCity a{color:#f55583;font-size:14px;margin-right:10px}
.cityConfirm{position:absolute;cursor:pointer;width:168px;height:48px;left:137px;bottom:22px;}
.cityConfirm a{width:168px;height:48px;display:block}
.evet { display:none; position:absolute; top:0px; left:0px; width:100%; height:100%; z-index:198; }
</style> 

<div class="dialog-wrap"></div>
<div class="dialog">
<div class="city-box">
<div class="close"><a title="关闭" href="javascript:close_dialog();" rel="external nofollow" ></a></div>
<div class="cityBox"><span>北京</span></div>
<div class="hotCityBox">
<div class="togleborder">◊</div>
<div class="togle"></div>
<div class="hotCityList">
<p class="clearfix">
<a href="">北京</a>
<a href="">上海</a>
<a href="">天津</a>
<a href="">杭州</a>
<a href="">西安</a>
<a href="">成都</a>
<a href="">郑州</a>
<a href="">厦门</a>
<a href="">青岛</a>
<a href="">深圳</a>
<a href="">太原</a>
<a href="">重庆</a>
<a href="">武汉</a>
<a href="">南京</a>
<a href="">广州</a>
<a href="">沈阳</a>
<a href="">济南</a>
<a href="">哈尔滨</a>
</p>
<div class="moreCity"><a href="">更多城市>></a></div>
</div>
</div>
<div class="cityConfirm"><a title="开始团购" href=""></a></div>
<div class="evet"></div>
</div>
</div> 

<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
function dialog(){
var h = $('body').height();
$('.dialog-wrap').css({'height':h,'opacity':0.5,'display':'block'});
$('.dialog').show();
}
function close_dialog(){
$('.dialog, .dialog-wrap').hide();
}
$('.cityBox').click(function(){
$('.hotCityBox, .evet').show();
}); 

$('.evet, .dialog-wrap').click(function(){
$('.hotCityBox, .evet').hide();
$('.evet').hide();
}); 

//dialog();
</script> 

<p onClick="dialog()" style="cursor:pointer">点击这里看效果</p>
<br>
我是文字我是文字文字我字我是文字我是文字
</body>
</html>

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索弹框
jquery mobile demo、jquery demo、jquery弹幕效果 demo、jquery weui demo、jquery ajax demo,以便于您获取更多的相关知识。

时间: 2024-11-08 22:05:09

一个仿糯米弹框效果demo_jquery的相关文章

用jquery中插件dialog实现弹框效果实例代码_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> <meta http-equiv=&qu

FLEX 仿Google联想框效果_Flex

首先是事件源,也就是从何而起,如下的一个输入框: 复制代码 代码如下: <mx:FormItem label="集团客户:" width="42%"> <!--change1--> <mx:TextInput id="txtAssociation" width="235" maxChars="32" change="associate();"/> &l

android dialog 模拟新浪、腾讯title弹框效果

http://blog.csdn.net/jj120522/article/details/7764183 首先我们看一下新浪微博的效果(其它就是一个dialog):                                                       点击title前                                                    点击title后  实现方式:      首先我们要自定义一个dialog     代码如下:     

基于jquery的仿百度搜索框效果代码_jquery

先看看整个的效果图:图一: 图二: 图三: 图四: 大概的效果图就这样,接下来直接看源码页面: 复制代码 代码如下: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="autoSearch._Default" %> <!DOCTYPE html PUBLIC "-//W3C//DT

一个仿DOS的Loading效果_典型特效

This works with Javscript only!                         正在装载服务器配置文件......... 稍候...............           [00009913] C:\WINDOWS\SETVER.EXE............ Uploading Successfully [00009913] C:\WINDOWS\WSOCK32 DLL............ Uploading Successfully [0000991

jQuery 插件仿百度搜索框智能提示(带Value值)_jquery

因公司需要做一个仿百度搜索框,并且带Value值的, 网上找了下只有Text, 都没带Value的 所以做了个. 直接贴代码. 复制代码 代码如下: (function($) { var timeid; var lastValue; var options; var c; var d; var t; $.fn.autoComplete = function(config) { c = $(this); var defaults = { width: c.width(), //提示框的宽度 默认跟

js实现仿Discuz文本框弹出层效果_javascript技巧

本文实例讲述了js实现仿Discuz文本框弹出层效果.分享给大家供大家参考.具体如下: 这是一个在经典论坛曾经热讨论的问题,记得在QQ邮箱里也有类似功能,Discuz7.0论坛里同样也有,当你的鼠标单击文本框的时候,会弹出一个包含文字.图片.表单无素的DIV层,里面的元素都可以进行操作,很方便,选中的值会自动添加到文本框内.本代码经过了多次修正,没有进行过多美化,你美工好的话可以自己美化. 运行效果截图如下: 具体代码如下: <!DOCTYPE html PUBLIC "-//W3C//D

标签-仿百度搜索框只能提示上下键移动的功能效果 js+jquery

问题描述 仿百度搜索框只能提示上下键移动的功能效果 js+jquery 搜索结果不能上下移动,只能按一下,按第二下的时候结果只剩下一个了,currentSelIndex总是为0 ,currentSelIndex是记录 标签id的变量. 首先,我输入一个字符,匹配到的结果会在文本框下方显示出来.因为代码都是写在搜索框的onkeyup ()事件中的,每按一下键盘都会触发该事件,当我第一次按(下)键的时候,相应的会把选中的文本赋 给搜索框,所以按第二次的时候又会重新触发该事件,搜索条件变成了第一次按(

js实现仿阿里巴巴城市选择框效果实例

  本文实例讲述了js实现仿阿里巴巴城市选择框效果.分享给大家供大家参考.具体分析如下: 这并不是一个城市选择插件,在这里介绍只是为了mark一下二级联动的方法,此效果适用于有二级子菜单的效果,如导航栏.城市选择.类别选择等等. 样式效果是基于阿里的样式,懒得做其他调整,在area.css中仅仅是为了修改浏览器兼容性略做了一点调整. 城市数据是通过js构造,当然也可以通过后端取得数据,不过感觉没必要. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18