2014-09-21 76 views
0

我有jQuery中的脚本:zAccordion - 滑块jQuery和HTML - 图像幻灯片文本

*<script type="text/javascript"> 

     $(document).ready(function() { 
      $("#example14").zAccordion({ 
       tabWidth: "15%", 
       width: "100%", 
       height: "100%" 
      }); 
      $(window).resize(function() { 
       $("#example14").height($(window).height()); 
       $("#example14 li").height($(window).height()); 
       $("#example14 img").height($(window).height()); 
      }); 
     }); 
    </script>* 

和一些HTML:

 *<ul id="example14"> 
      <li><img src="images/slide0.gif" width="100%" height="100%" alt="" /></li> 
      <li><img src="images/slide1.gif" width="100%" height="100%" alt="" /></li> 
      <li><img src="images/slide2.gif" width="100%" height="100%" alt="" /></li> 
      <li><img src="images/slide3.gif" width="100%" height="100%" alt="" /></li> 
      <li><img src="images/slide4.gif" width="100%" height="100%" alt="" /></li> 
     </ul>* 

的quastion是:我怎样才能在生成一些文本例如,我的图像在CSS中滑动?请帮帮我!谢谢

回答

0

你问了CSS,对吧?

<ul id="example14"> 
      <li><img src="images/slide0.gif" width="100%" height="100%" alt="" /> 
       <div class="text">lorem lorem lorem</div></li> 
      <li><img src="images/slide1.gif" width="100%" height="100%" alt="" /></li> 
      <li><img src="images/slide2.gif" width="100%" height="100%" alt="" /></li> 
      <li><img src="images/slide3.gif" width="100%" height="100%" alt="" /></li> 
      <li><img src="images/slide4.gif" width="100%" height="100%" alt="" /></li> 
</ul> 
.text{ 
position:relative; 
top:-100px; 
}