zAccordion - 滑块jquery和html - 图像幻灯片上的文本

时间:2014-09-21 11:57:15

标签: javascript jquery html css

我在jquery中有一个脚本:

    *<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>*

问题是:如何在CSS中的图像幻灯片上生成一些文本?请帮我!谢谢

1 个答案:

答案 0 :(得分: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;
}