相思资源网 Design By www.200059.com
本文实例为大家分享了ionic grid九宫格制作的具体代码,供大家参考,具体内容如下
1、Html
<ion-header-bar class="bar bar-header bar-light bar-calm"> <button class="button button-icon icon ion-navicon"></button> <ion-title class="bar-calm">腾讯新闻</ion-title> </ion-header-bar> <ion-content> <div class="row row-wrap"> <div class="col col-25" ng-repeat="item in items"> <img src="/UploadFiles/2021-04-02/ionic.png">2、Controller
appCntrollers.controller('ManageGridCtrl', function ($scope, $timeout, $ionicLoading) { $ionicLoading.show({ content: 'Loading', animation: 'fade-in', showBackdrop: true, maxWidth: 200, showDelay: 0 }); $timeout(function () { $ionicLoading.hide(); $scope.items = [ { id: 1, text: "111111" }, { id: 2, text: "222222" }, { id: 3, text: "333333" }, { id: 4, text: "444444" }, { id: 5, text: "555555" }, { id: 6, text: "666666" }, { id: 7, text: "777777" }, { id: 8, text: "888888" }, { id: 9, text: "999999" }, { id: 10, text: "aaaaaa" }, { id: 11, text: "bbbbbb" }, { id: 12, text: "cccccc" }, ]; }, 2000); $scope.alertClick = function (val) { alert(val); } })3、Css
/* 栅格grid */ .col-25{border: 1px solid #ddd;height: 120px;display:flex;justify-content:center;align-items: center;} .col-25 img {height: 64px; width: 64px;} .col-25 ul li img {height: 64px; width: 64px;margin-top: 12px} .col-25 ul li p {text-align: center;}4、效果图
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
标签:
ionic,grid,九宫格
相思资源网 Design By www.200059.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
相思资源网 Design By www.200059.com
暂无ionic grid(栅格)九宫格制作详解的评论...