Ionic + Angular.js实现图片轮播的方法示例

图片轮播在我们日常开发中是再熟悉不过的了,下面这篇文章主要给大家介绍了Ionic + Angular实现图片轮播的方法,文中给出了详细的示例代码供大家参考学习,需要的朋友们下面来一起看看吧。

本文主要给大家介绍了关于Ionic + Angular实现图片轮播的相关资料,分享出来供大家参考学习,需要的朋友们下面来一起看看吧。

先来看看实现的效果图:

Ionic + Angular.js实现图片轮播的方法示例

方法示例:

template文件夹新建slider.html

<ion-view view-title="图片轮播"> <ion-content scroll="false"> <ion-slides options="options" slider="data.slider"> <ion-slide-page> <div><h1>BLUE</h1></div> </ion-slide-page> <ion-slide-page> <div><h1>YELLOW</h1></div> </ion-slide-page> <ion-slide-page> <div><h1>PINK</h1></div> </ion-slide-page> </ion-slides> </ion-content> </ion-view>

style.css

.slider-box { height: 300px; } .slider-box .box { width: 100%; height: 100%; } .yellow { background: #FFF68F; } .blue { background: #1E90FF; } .pink { background: #FF6A6A; }

app.js:

.state('slider', { url: '/slider', views: { '': { templateUrl: 'templates/slider.html', controller: 'SliderCtrl' } } })

controller.js:

.controller('SliderCtrl', function($scope) { $scope.settings = { enableFriends: true }; })

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对脚本之家的支持。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wysggs.html