本文實(shí)例為大家分享了ionic grid九宮格制作的具體代碼,供大家參考,具體內(nèi)容如下
網(wǎng)站建設(shè)哪家好,找成都創(chuàng)新互聯(lián)!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、成都小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了下陸免費(fèi)建站歡迎大家使用!
1、Html
騰訊新聞
{{item.text}}
{{item.text}}
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、效果圖
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。