问题在html中调整大小

时间:2013-09-03 06:28:52

标签: jquery html css cordova

我在我的phonegap项目中添加了照片滑动代码,应该是全屏滑动,但即使它的演示全屏,我也可以在一张幻灯片上获取所有图像 屏幕截图输出      enter image description here

这是代码

<!doctype html>
  <html lang="en">
  <head>
 <meta charset="UTF-8">
 <title>Demo</title>
 <link rel="stylesheet" href="css/idangerous.swiper.css">
  <style>
     /* Demo Styles */
  body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  }
 .swiper-container {
  width: 660px;
  height: 250px;
  color: #fff;
   text-align: center;
 }
 .swiper-slide {
  width: 500px;
   height: 100%;
  }
  .red-slide {
  background: #ca4040;
 }
 .blue-slide {
  background: #4390ee;
  }
  .orange-slide {
   background: #ff8604;
  }
 .green-slide {
 background: #49a430;
  }
 .pink-slide {
  background: #973e76;
  }
.swiper-slide .title {
  font-style: italic;
  font-size: 42px;
  margin-top: 80px;
  margin-bottom: 0;
  line-height: 45px;
 }
  .pagination {
   position: absolute;
   z-index: 20;
   left: 10px;
   bottom: 10px;
  }
   .swiper-pagination-switch {
   display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #222;
    margin-right: 5px;
     opacity: 0.8;
     border: 1px solid #fff;
     cursor: pointer;
       }
      .swiper-visible-switch {
       background: #aaa;
      }
     .swiper-active-switch {
     background: #fff;
     }
      </style
    </head>
     <body>
    <div class="swiper-container">
  <div class="swiper-wrapper">
  <div class="swiper-slide red-slide">
    <div class="title">Slide 1</div>
  </div>
  <div class="swiper-slide blue-slide">
    <div class="title">Slide 2</div>
  </div>
  <div class="swiper-slide orange-slide">
    <div class="title">Slide 3</div>
  </div>
</div>
<div class="pagination"></div>
 </div>
<script src="js/jquery-1.10.1.min.js"></script>
<script src="js/idangerous.swiper-2.1.min.js"></script>
<script>
var mySwiper = new Swiper('.swiper-container',{
pagination: '.pagination',
paginationClickable: true,
moveStartThreshold: 100
})
</script>

   

1 个答案:

答案 0 :(得分:1)

您忘记将>添加到</style标记。