| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <title>Document</title>
- <script src="../js/min-loader.js"></script>
- <style>
- .info-box {
- height: 85px;
- background-color: white;
- background-color: #ecf0f5;
- }
-
- .info-box .info-box-icon {
- border-top-left-radius: 2px;
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 2px;
- display: block;
- float: left;
- height: 85px;
- width: 85px;
- text-align: center;
- font-size: 45px;
- line-height: 85px;
- background: rgba(0, 0, 0, 0.2);
- }
-
- .info-box .info-box-content {
- padding: 5px 10px;
- margin-left: 85px;
- }
-
- .info-box .info-box-content .info-box-text {
- display: block;
- font-size: 14px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- text-transform: uppercase;
- }
-
- .info-box .info-box-content .info-box-number {
- display: block;
- font-weight: bold;
- font-size: 18px;
- }
-
- .major {
- font-weight: 10px;
- color: #01AAED;
- }
-
- .main {
- margin-top: 25px;
- }
-
- .main .layui-row {
- margin: 10px 0;
- }
- </style>
- </head>
- <body>
- <div class="layui-fluid main">
- 欢迎使用系统
- </div>
- <script>
- layui.use('jquery', function() {
- var $ = layui.jquery;
- $('#test').on('click', function() {
- parent.message.show({
- skin: 'cyan'
- });
- });
- });
- </script>
- </body>
- </html>
|