在AngularJS中找不到猫头鹰轮播

时间:2018-10-17 13:15:38

标签: html css angularjs owl-carousel

<div>
   <div class="col-12 row mx-0 justify-content-center align-items-center border h-70 text-secondary">
      <span>
         <ul>
            <div class="owl-carousel owl-theme">
               <li ng-repeat="result in result.results" style="display: inline; white-space: nowrap; list-style-type: none; padding-right: 20px;">
                  <img class="scroll" ng-src="{{result.images}}" alt="Avatar"> 
               </li>
         </ul>
         </div>
      </span>
   </div>
</div>

我想使用ng-repeat连续滚动显示图像。我正在使用Owl轮播,但没有显示图像并且无法正常工作。我已经加载了所有CDN。

如果我移除了class="owl-carousel owl-theme",它会在一行中正常显示图像。

1 个答案:

答案 0 :(得分:0)

请像这样放置

<img class="scroll" ng-src="{{result}}" alt="Avatar">

并对此进行确认