dengzhiguo 6 年之前
父節點
當前提交
a96bb141db
共有 5 個文件被更改,包括 92 次插入14 次删除
  1. 二進制
      img/index/initModelBj.png
  2. 66 0
      src/css/inded.css
  3. 1 1
      src/css/register.css
  4. 17 0
      src/js/newMenu/index.js
  5. 8 13
      template/index.html

二進制
img/index/initModelBj.png


+ 66 - 0
src/css/inded.css

@@ -104,3 +104,69 @@ border-radius: 5px;margin-top:15px;/*float: right;*/margin-left:78px;text-align:
 .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: 0;
+    top:10%;
+    width: 100%;
+    height: 0px;
+    background: url(../../img/index/initModelBj.png) no-repeat;
+    background-size:100% 100%;
+    overflow: hidden;
+    transition: all .2s ease-in; 
+    z-index:99999999991 ; 
+}
+.initModel.active div{
+    height:80%;
+    transition: all .2s ease-in-out;
+}
+.initModel.active {
+    height:100%;
+}
+.initModel .glyphicon-remove{
+    position: absolute;
+    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: 52%;
+    transform: translateX(-50%);
+    bottom: 20%;
+}
+.initModel .ljZhuCe {
+    position: absolute;
+    color: #fff;
+    font-size: 40px;
+    right:7%;
+    top: 45%;
+    transform: translateY(-50%);
+}
+@media screen and (max-width:1600px){
+   
+    .initModel .ljZhuCe{
+        font-size: 26px!important;
+        right:8.5%;
+    }
+}

+ 1 - 1
src/css/register.css

@@ -197,7 +197,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{

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

@@ -67,4 +67,21 @@ 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;
+		})
+		if($('.initModel').hasClass('active')){
+			setTimeout(()=>{
+				$('.initModel .glyphicon-remove').trigger('click');
+			},10000)
+		}
+	}
 }())

+ 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>