Browse Source

首页初始弹出框

liting2017 6 years ago
parent
commit
07e4e8f190
5 changed files with 83 additions and 14 deletions
  1. BIN
      img/index/initModelBj.png
  2. 59 0
      src/css/inded.css
  3. 1 1
      src/css/register.css
  4. 15 0
      src/js/newMenu/index.js
  5. 8 13
      template/index.html

BIN
img/index/initModelBj.png


+ 59 - 0
src/css/inded.css

@@ -104,3 +104,62 @@ border-radius: 5px;margin-top:15px;float: right;text-align: center;color:#1596E8
 .brands>div>img.ani{animation: imgani 4s linear  1 normal;animation-fill-mode: forwards;}
 .brands>div>img.bni{animation: imgbni 4s linear  1 normal;animation-fill-mode: forwards;}
 .carousel-control{top:38%;background-image: none!important;}
+
+.initModel{
+    position: fixed;
+    width: 100%;
+    height: 0;
+    background: rgba(0, 0, 0, .2);
+    top: 0;
+    left: 0;
+    z-index: 9999999999;
+}
+.initModel div{
+    position: fixed;
+    left: 50%;
+    top: 50%;
+    width: 600px;
+    height: 0px;
+    background: url(../../img/index/initModelBj.png) no-repeat;
+    background-size:100% 100%;
+    transform: translate(-50%,-50%);
+    overflow: hidden;
+    transition: all .2s ease-in; 
+    z-index:99999999991 ; 
+}
+.initModel.active div{
+    height: 400px;
+    transition: all .2s ease-in-out;
+}
+.initModel.active {
+    height:100%;
+}
+.initModel .glyphicon-remove{
+    position: fixed;
+    font-size: 30px;
+    color: #fff;
+    right: 20px;
+    top: 20px;
+    cursor: pointer;
+}
+.initModel .glyphicon-remove:hover{
+    color: #f00;
+}
+.initModel a:hover{
+    color: #1596E8;
+}
+.initModel .moreActive {
+    position: absolute;
+    color: #fff;
+    font-size: 16px;
+    left: 50%;
+    transform: translateX(-50%);
+    bottom: 70px;
+}
+.initModel .ljZhuCe {
+    position: absolute;
+    color: #fff;
+    font-size: 18px;
+    right: 12px;
+    top: 170px;
+}

+ 1 - 1
src/css/register.css

@@ -196,7 +196,7 @@ padding: 20px 50px;overflow-y: auto;box-shadow: 0 4px 10px 0 #777;}
     background-size:120% 100% ; 
     
 }
-.text_center p,.text_top,.text_bottom,.text_bottom a{
+.text_center p,.text_top,.text_bottom,.text_bottom a,.text_top a{
     color: #383838
 }
 .text_bottom a:hover{

+ 15 - 0
src/js/newMenu/index.js

@@ -67,4 +67,19 @@ import 'js/public.js';
 		
 	}
 	setInterval(task,4000);
+
+	//初始悬浮窗口处理
+	initModel();
+	function initModel(){
+		if(!sessionStorage['initVal']){  //为true时显示了一次
+			$('.initModel').addClass('active');
+		}
+		$('.initModel .glyphicon-remove').click(function(){
+			$(this).parents('.initModel').removeClass('active');
+			sessionStorage['initVal']=true;
+		})
+		// setTimeout(()=>{
+		// 	$('.initModel .glyphicon-remove').trigger('click');
+		// },2000)
+	}
 }())

+ 8 - 13
template/index.html

@@ -7,11 +7,11 @@
 	<meta name="viewport" content="width=device-width, initial-scale=1.0">
 	<meta http-equiv="X-UA-Compatible" content="ie=edge">
 	<title>首页</title>
-	<link rel="stylesheet" href="../src/css/bootstrap.css">
+	<!-- <link rel="stylesheet" href="../src/css/bootstrap.css">
     <link rel="stylesheet" href="../src/css/newMenu/public.css">
     <link rel="stylesheet" href="../src/css/newMenu/header.css">
     <link rel="stylesheet" href="../src/css/newMenu/index.css">
-    <link rel="stylesheet" href="../src/css/inded.css">
+    <link rel="stylesheet" href="../src/css/inded.css"> -->
 </head>
 <body>
 	<div class="header">
@@ -783,18 +783,13 @@
 		<div class="smg">
 			<input type="text" name="msg" value="111" id="msg" />
 		</div>
-		<!-- <div class="modeBj">
-			<div class="modeLogin">
-				<i class="glyphicon glyphicon-remove delLogin"></i>
-				<div>
-					<span>请选择您的用户类型</span>
-					<p data-val='0' class="active">个人用户</p>
-					<p data-val='1'>企业用户</p>
-					<button class="btn btn-success">确认</button>
-					<button class="btn btn-default">返回</button>
-				</div>
+		<div class="initModel">
+			<div>
+				<span class="glyphicon glyphicon-remove"></span>
+				<a href="#" class="moreActive">了解活动规则详情 >></a>
+				<a href="#" class="ljZhuCe">立即注册 >></a>
 			</div>
-		</div> -->
+		</div>
 	</footer>
 </body>