12345678910111213141516171819202122232425262728293031323334353637383940 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml" ng-app="app">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>图片新闻</title>
- <link href="../../AFrontEnd/css/animate.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/fontawesome/css/font-awesome.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/bootstrap.css" rel="stylesheet" />
- <link href="../../AFrontEnd/css/style.css" rel="stylesheet" />
- <link href="../../AFrontEnd/plugins/swiper/swiper.css" rel="stylesheet" />
- <script>document.write("<link href='../../AFrontEnd/css/special.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
- <script>document.write("<link href='css/xxgg.css?time=" + new Date().getTime() + "' rel='stylesheet'>");</script>
- </head>
- <body ng-controller="indexCtrl as ctl" ng-cloak>
- <div class="swiper" style="background-color: #000;width:100%;height:100% ">
- <div class="swiper-container" style="height:100%">
- <div class="swiper-wrapper">
- <div class="swiper-slide" ng-repeat="item in ctl.newsImg">
- <div class="imgItem">
- <img ng-src="{{item.FILEURL1}}" style="height:100%;left:50%;transform:translate(-50%,-50%)" ng-click="ctl.openTab(item.ID)" />
- <div class="sp-box" style="position: absolute; bottom: 0; background-color: rgba(0,0,0,0.5)">
- <center class="swiper-title" style="width:100%;cursor:pointer" ng-bind="item.BT"></center>
- </div>
- </div>
- </div>
- </div>
- <div class="swiper-pagination sp-text-right sp-pr-10"></div>
- </div>
- </div>
- <script src="../../AFrontEnd/js/jquery/jquery-2.1.4.min.js"></script>
- <script src="../../AFrontEnd/js/angularjs/angular.js"></script>
- <script src="../../AFrontEnd/js/angularjs/dirPagination.js"></script>
- <script src="../../AFrontEnd/plugins/swiper/swiper.js"></script>
- <script src="../../apiurljs.js"></script>
- <script src="../../js/sm4.js"></script>
- <script>document.write('<scri' + 'pt src="../../AFrontEnd/js/special/special.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- <script>document.write('<scri' + 'pt src="js/xxggimg.js?time=' + new Date().getTime() + '" type="text/javascript"></s' + 'cript>')</script>
- </body>
- </html>
|