我有滑块:
<div id="slider2_container" style="position: relative; top: 0px; left: 0px; width:277px; height: 500px;">
<!-- Slides Container -->
<div u="slides" class="homeslider2" style="cursor: move; position: absolute; left: 0px; top: 0px; width:277px; height: 500px; overflow: hidden;">
<div data-ng-repeat="product in products">
<div class="thumbnail thumbnail{{product.id}} col-md-10">
<h4 style='text-align:center;'>{{product.name}}</h4>
<a href='#/productPage/{{product.id}}'>
<div class='thumbnail catalogimage{{product.id}}'></div>
</a>
<div class="caption productDetails">
<p>{{product.description}}</p>
<p><a href="#/productPage/{{product.id}}" class="btn btn-default detailsBtn" role="button">פרטים</a></p>
</div>
</div>
</div>
<!-- Jssor Slider End -->
</div>
</div>
数据显示良好且良好但滑块根本没有移动,因为研究我理解它因为div被搞砸了。与另一个正常工作的jssor滑块相比,它在控制台中看起来不错。
我知道我的javascript是正常的,因为当只使用文本的一些div工作..