Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/81.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript jCarousel Lite-多宽度图像?_Javascript_Html - Fatal编程技术网

Javascript jCarousel Lite-多宽度图像?

Javascript jCarousel Lite-多宽度图像?,javascript,html,Javascript,Html,我正在使用: 有人知道用这个制作多幅图像的方法吗?我在列表中添加了div,这样我就可以在一些幻灯片上显示除图像以外的内容(甚至不确定这是否正确 <div class="jCarouselLite"> <ul> <li> <div class="slideshow-content" style="visibility: visible; pos

我正在使用:

有人知道用这个制作多幅图像的方法吗?我在列表中添加了div,这样我就可以在一些幻灯片上显示除图像以外的内容(甚至不确定这是否正确

          <div class="jCarouselLite">
            <ul>

                <li>  
                <div class="slideshow-content" style="visibility: visible; position:
                relative; z-index: 100; left: 0px; width: 870px;">
                        <table width="870" height="420" cellpadding="0" cellspacing="0">
                        <tr>
                        <td width="270" height="420" valign="top">
                        <span class="headlines">Title 1</span><br>
                        <span class="bodycopy"><p>xxxxxxxxxxxxx</p></span>
                        </td>
                        <td width="600" height="420" margin="200px">
                        <img src="images/image0.jpg" width="600"/> <!--500px with 100px image spacer-->
                        </td>
                        </tr>
                        </table>
                    </div>
                </li>

               <li>
                <div class="slideshow-content" style="visibility: visible; position:
                relative; z-index: 100; left: 0px; width: 870px;">
                    <table width="870" height="420" cellpadding="0" cellspacing="0">
                    <tr>
                    <td width="870" height="420" valign="top">
                    <img src="images/image1.jpg" width="870px"/> <!--500px with 100px image spacer-->
                    </td>
                    </tr>
                    </table>
                    </div>
                </li>

                <li>
                <div class="slideshow-content" style="visibility: visible; position:
                relative; z-index: 100; left: 0px; width: 870px;">
                        <table width="870" height="420" cellpadding="0" cellspacing="0">
                        <tr>
                        <td width="270" height="420" valign="top">
                        <span class="headlines">Title 2</span><br>
                        <span class="bodycopy"><p>xxxxxxxxxx</p></span>
                        </td>
                        <td width="600" height="420">
                        <img src="images/image2.jpg" width="600"/>  <!--500px with 100px image spacer-->
                        </td>
                        </tr>
                        </table>
                        </div>
                </li>

                <li>
                <div class="slideshow-content" style="visibility: visible; position:
                relative; z-index: 100; left: 0px; width: 600px;">
                    <table width="600" height="420" cellpadding="0" cellspacing="0">
                    <tr>
                    <td width="600" height="420" valign="top">
                        <img src="images/image3.jpg" width="600px"/> <!--500px with 100px image spacer-->
                    </td>
                    </tr>
                    </table>
                    </div>
                </li>

                <li>

                <div class="slideshow-content" style="visibility: visible; position:
                relative; z-index: 100; left: 0px; width: 1200px;">
                    <table width="1200" height="420" cellpadding="0" cellspacing="0">
                    <tr>
                    <td width="1200" height="420" valign="top">
                        <img src="images/image4.jpg" width="1200px"/> <!--1100px with 100px image spacer-->
                    </td>
                    </tr>
                    </table>
                    </div>
                </li>

                <li>
                <div class="slideshow-content" style="visibility: visible; position:
                relative; z-index: 100; left: 0px; width: 700px;">
                    <table width="700" height="420" cellpadding="0" cellspacing="0">
                    <tr>
                    <td width="700" height="420" valign="top">
                        <img src="images/image5.jpg" width="700px"/> <!--600px with 100px image spacer-->
                    </td>
                    </tr>
                    </table>
                    </div>
                </li>               

                <li>
                <div class="slideshow-content" style="visibility: visible; position:
                relative; z-index: 100; left: 0px; width: 700px;">
                    <table width="700" height="420" cellpadding="0" cellspacing="0">
                    <tr>
                    <td width="700" height="420" valign="top">
                        <img src="images/image6.jpg" width="700px"/> <!--600px with 100px image spacer-->
                    </td>
                    </tr>
                    </table>
                    </div>
                </li>               

                <li>
                <div class="slideshow-content" style="visibility: visible; position:
                relative; z-index: 100; left: 0px; width: 835px;">
                    <table width="835" height="420" cellpadding="0" cellspacing="0">
                    <tr>
                    <td width="835" height="420" valign="top">
                        <img src="images/image7.jpg" width="835px"/> <!--465px with 100px image spacer - 270px end-->
                    </td>
                    </tr>
                    </table>
                    </div>
                </li>               



            </ul>
        </div>

  • 标题1
    XXXXXXXXXXXX

  • 标题2
    XXXXXXXXX


谢谢大家,最后用了这个:

唯一的旋转木马,我发现,允许多宽度的图像

再次感谢