| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
- <%@include file="/context/mytags.jsp" %>
- <c:set var="ctxPath" value="${pageContext.request.contextPath}"/>
- <!-- context path -->
- <!-- update-begin--Author:xuelin Date:20170428 for:#1755 【美化】用户分析报表,多tab格式,是否可以美化 需要改底层-------------------- -->
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script src="plug-in/echarts/echarts.js" type="text/javascript"></script>
- <link rel="stylesheet" type="text/css" href="css/main.css"/>
- <!DOCTYPE html >
- <body>
- <div class="homeBox">
- <div class="welcome_text">欢迎使用美都环卫后台管理系统!</div>
- </div>
- </body>
- <script type="text/javascript" src="plug-in/hplus/hplus-tab.js"></script>
- <style>
- @keyframes animate-text {
- 0% {
- font-size: 44px;
- opacity: 0;
- filter: blur(10px);
- }
- 50% {
- font-size: 90px;
- opacity: 0.65;
- filter: blur(3px);
- }
- 100% {
- font-size: 84px;
- opacity: 1;
- filter: blur(0px);
- }
- }
- .homeBox {
- position: relative;
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-content: center;
- align-self: center;
- align-items: center;
- background-image: url("http://47.100.210.233/upload/homePageBackGroundImage/homePage_backgroundImage.jpg") !important;
- background-repeat: no-repeat;
- background-size: 100% 100%;
- z-index: 1;
- }
- .homeBox::before {
- content: "";
- position: absolute;
- background: inherit;
- width: 100%;
- height: 100%;
- padding: 20px;
- filter: blur(4px);
- z-index: 2;
- }
- .welcome_text {
- z-index: 3;
- color: #FFFFFF;
- font-size: 84px;
- text-shadow: -2px -2px 0px #22509b, 2px 2px 0px #999;
- font-weight: bold;
- font-family: 华文彩云;
- letter-spacing: 14px;
- line-height: 100px;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -o-user-select: none;
- -ms-user-select: none;
- user-select: none;
- opacity: 1;
- filter: blur(0px);
- animation: animate-text 1.5s;
- }
- </style>
|