代码例如以下:

<!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();"></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>

仿糯米弹框效果demo的更多相关文章

  1. Android PopupWindow 仿微信弹出效果

    项目中,我须要PopupWindow的时候特别多,这个东西也特别的好使,所以我今天给大家写一款PopupWindow 仿微信弹出效果.这样大家直接拿到项目里就能够用了! 首先让我们先看效果: 那么我首 ...

  2. JS遮罩层弹框效果

    对于前端开发者来说,js是不可缺少的语言.现在我开始把我日常积累的一些js效果或者通过搜索自己总结的一些效果分享给大家,希望能够帮助大家一起进步,也希望大家能够多多支持! 1.今天我先分享一个遮罩层弹 ...

  3. onload + setTimeout 用法,制作广告弹框效果

    一般来说,只有 <body>,<img>, <link>, <script>,<frame>, <frameset>, < ...

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

    http://blog.csdn.net/jj120522/article/details/7764183 首先我们看一下新浪微博的效果(其它就是一个dialog):                点 ...

  5. iOS实现用控制器作为弹框效果(modalPresentationStyle)

    如图: 中间模块其实为一个正常vc控制器,一般我们present,都是采用默认style 但如果要实现这种,写法如下: navigationC.modalPresentationStyle = UIM ...

  6. 在wpf中使用winrt的Toast弹框效果

    源码地址:https://code.msdn.microsoft.com/windowsdesktop/Sending-toast-notifications-71e230a2/sourcecode? ...

  7. popupwindow 模拟新浪、腾讯title弹框效果

    .jpg外部引用 原始文档 MainActivity.java外部引用 原始文档 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 ...

  8. html5的audio实现高仿微信语音播放效果Demo

    HTML部分: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <t ...

  9. iOS头条新闻App、自动布局、省市区联动、登录按钮动画、Alert弹框效果等源码

    iOS精选源码 LEEAlert -- 优雅的Alert ActionSheet 登录按钮 省市区三级联动 JHViewCorner - 一行代码搞定圆角 JHFrameLayout - 一行代码实现 ...

随机推荐

  1. Win32函数Sleep的精度测试

    用了三种方法,第一种使用高精度性能计数器:第二种是使用多媒体定时器,另一种是<Windows图形编程>里提供的CPU周期来获取.推荐第一种方式测量: 先看第一种: #include < ...

  2. 一步步启动linux

    可以一步一步启动linux. 在Ubantu刚一启动时,按c健即进入Grub>提示符状态,在此状态下输入(我用的是Ubuntu 13) grub>linux /vmlinuz grub&g ...

  3. 浅谈css的预编译---less语言

    正如各位所知道的一样,css是一门标记性语言,语法相对简单,对使用者的要求也比较低 .不过可乐不知道友友们有没有发现,在使用css的时候需要书写大量看似没有逻辑的代码,不方便维护及扩展,不利于复用,尤 ...

  4. HTML与CSS入门——第六章 使用字体

    知识点: 1.粗体.斜体和特殊文本格式的使用 2.字体的调整方法 3.特殊字符的使用方法 6.1 粗体.斜体和特殊文本格式: font-weight控制粗细 加粗<strong> font ...

  5. ASP.net 前台页面通过ID获取控件

    asp.net的服务器控件的ID通常只能在服务器端很好的识别,客户端需要通过ClientID获得控件 1.通过js获得   var controlID = "<%=controlID. ...

  6. 报错: App Transport Security has blocked a cleartext HTTP (http://) resource load since it is ins

    环境:Xcode7.1.1 + iOS9.1 详细错误: App Transport Security has blocked a cleartext HTTP (http://) resource ...

  7. Swift中构造器的继承和重写

    import Foundation /* 构造器的继承: Swift的子类不会自动继承父类的构造器, 若继承, 则满足如下规则: 1.如果子类没有提供任何指定构造器, 那么它将自动继承父类的所有指定构 ...

  8. asp.net 发送邮件代码 System.Net.Mail

    前台页面 SendEmail.aspx 代码 using System.Net.Mail;using System.Net; <h2> 发送电子邮件演示 </h2> <t ...

  9. 生产环境 tomcat中启动缓慢

    具体的原因没研究,大概是一个随机数种子生成的速度拖慢了,直接copy一份解决方案,属于备忘材料 解决 有两种解决办法: 1)在Tomcat环境中解决 可以通过配置JRE使用非阻塞的Entropy So ...

  10. Struts2:ValueStack

    一.ValueStack     1 .ValueStack是一个接口,在struts2中使用OGNL(Object-Graph Navigation Language)表达式实际上是使用       ...