|
- <!DOCTYPE html>
- <html>
-
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <title>收支明细</title>
- <link rel="stylesheet" href="css/main.css" />
- <link rel="stylesheet" href="css/ui-base.css" />
- <link rel="stylesheet" href="css/ui-box.css" />
- <link rel="stylesheet" href="css/ui-color.css" />
- <style type="text/css">
- .bot_line {
- border-bottom: 1px solid #e5e5e5;
- }
-
- .div_style {
- background-color: #ffffff;
- box-shadow: inset 0 -0.5px 0 0 rgba(0, 0, 0, 0.1);
- padding: 0.12rem 0.16rem 0.12rem 0.16rem;
- }
-
- .more {
- /*height: 4rem;*/
- padding: 0.12rem;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #333;
- /*background: #fff;*/
- }
-
- .pull_icon {
- width: 0.25rem;
- height: 0.25rem;
- /*background-image: url('images/pull.png');*/
- background-repeat: no-repeat;
- background-position: center;
- background-size: 0.25rem;
- transition: all .5s;
- }
-
- .more span {
- padding-left: 0.05rem;
- }
-
- .more .flip {
- transform: rotate(180deg);
- }
-
- .loading {
- background-image: url('images/loading.png');
- background-repeat: no-repeat;
- background-position: center;
- background-size: 25px;
- }
-
- .more .loading {
- -webkit-transform: rotate(0deg) translateZ(0);
- -webkit-transition-duration: 0;
- -webkit-animation-name: loading;
- -webkit-animation-duration: 2s;
- -webkit-animation-iteration-count: infinite;
- -webkit-animation-timing-function: linear;
- }
-
- @-webkit-keyframes loading {
- from {
- -webkit-transform: rotate(0deg) translateZ(0);
- }
- to {
- -webkit-transform: rotate(360deg) translateZ(0);
- }
- }
- </style>
- </head>
-
- <body style="background-color: #f6f6f6;">
- <div id="list" class="ub ub-ver">
- <!--<div class="ub div_style">
- <div class="ub-f1 ub ub-ver">
- <div class="ulev1" style="color: #2b3857;">微信转账</div>
- <div class="ulev0" style="color: #80889a;">2017-09-09 12:12:12</div>
- </div>
- <div class="ub ub-ver">
- <div class="ub ub-ae ub-pe ulev2" style="color: #2d2f3b;">+10</div>
- <div class="ub ub-ae" style="color: #80889a;">余额 4433</div>
- </div>
- </div>
- <div class="ub div_style">
- <div class="ub-f1 ub ub-ver">
- <div class="ulev1" style="color: #2b3857;">微信转账</div>
- <div class="ulev0" style="color: #80889a;">2017-09-09 12:12:12</div>
- </div>
- <div class="ub ub-ver">
- <div class="ub ub-ae ub-pe ulev2" style="color: #80889a;">-10</div>
- <div class="ub ub-ae" style="color: #80889a;">余额 4433</div>
- </div>
- </div>-->
- </div>
- <div class="more">
- <!--<div class="pull_icon"></div>-->
- <span>加载更多</span>
- </div>
- <div class="ub ub-ac ub-pc ui_p_t40 ui_p_b40 ulev2" style="display: none;" id="no_info">暂无相关明细!</div>
- <script src="js/jquery-2.2.4.min.js" type="text/javascript" charset="utf-8"></script>
- <script src="js/main.js?v=2.2&t=201705081438" type="text/javascript" charset="utf-8"></script>
- <script src="js/rem.js" type="text/javascript" charset="utf-8"></script>
- <script type="text/javascript" src="js/balance_list.js?v=2.2&t=201705081438"></script>
- </body>
-
- </html>
|