一个仿糯米弹框效果demo

代码如下:

<!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>
(0)

相关推荐

  • 一个仿糯米弹框效果demo

    代码如下: <!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,

  • vue项目中仿element-ui弹框效果的实例代码

    最近要写个弹框,发现element-ui弹框样式还可以,就copy下来改吧改吧.也不分步骤详细介绍了直接上代码. 在组件目录中新建文件夹message 我把message目录里的东西给大家贴出来 message文件夹 src文件夹 index.js import Message from './src/main.js'; export default Message; mian.js import Vue from 'vue'; import Main from './main.vue'; le

  • 微信小程序实现弹框效果

    本文实例为大家分享了微信小程序实现弹框效果的具体代码,供大家参考,具体内容如下 先上代码 wxml部分: <view class='top' bindtap='powerDrawer' data-statu="open" data-num='300'> <text>向上弹起</text> </view> <view class='top' bindtap='powerDrawer' data-statu="open&quo

  • ionic 自定义弹框效果

    在工作过程中往往需要自定义的弹框.因此,将内容整理如下,以方便学习.若有不当之处,敬请斧正! 思路 利用ionic自带的弹框$ionicPopup. 隐藏头部和尾部,只保留body部分 在利用templateUrl或者template,引入需要的模板 代码 $ionicPopup.show({ cssClass:'team-popup', template: "<div class='list popup-form'>" + "<div class = 'f

  • Android 实现抖音头像底部弹框效果的实例代码

    布局文件 activity_test.xml <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"

  • js实现弹框效果

    本文实例为大家分享了js实现弹框效果的具体代码,供大家参考,具体内容如下 js实现弹窗效果 利用display来控制弹窗的现实和隐藏 <!-- 弹出层 --> <div id="popLayer"></div> <!--黑色蒙版 --> <div id="popBox"> <div class="close"> X </div> <div> <!

  • vue自定义弹框效果(确认框、提示框)

    本文实例为大家分享了vue自定义弹框效果的具体代码,供大家参考,具体内容如下 1.自定义确认框和提示框 根据传入的type来判断是确认框或提示框 <template> <transition name="confirm-fade"> <div v-if="isShowConfirm" class="my-confirm" @click.stop="clickFun('clickCancel')"&

  • 小程序自定义弹框效果

    本文实例为大家分享了小程序自定义弹框效果的具体代码,供大家参考,具体内容如下 wxml <!--button--> <view class="btn" bindtap="powerDrawer" data-statu="open">来点我呀</view> <!--mask--> <view class="drawer_screen" bindtap="powerD

  • vue自定义弹框效果(确认框、提示框)

    本文实例为大家分享了vue自定义弹框效果的具体代码,供大家参考,具体内容如下 1.自定义确认框和提示框 根据传入的type来判断是确认框或提示框 <template> <transition name="confirm-fade"> <div v-if="isShowConfirm" class="my-confirm" @click.stop="clickFun('clickCancel')"&

  • 微信小程序自定义弹框效果

    本文实例为大家分享了微信小程序自定义弹框效果的具体代码,供大家参考,具体内容如下 wxml <!-- 取消订单按钮 --> <view class="cancelBtn" bindtap="cancelOrder" data-id="{{item.id}}" data-type="{{type}}">取消订单</view> <!-- 取消订单弹框 --> <view cla

随机推荐