講解使用SVG制作loading加載動(dòng)畫的方法
今天和大家分享一個(gè)以SVG圖像為主的loading加載動(dòng)畫,現(xiàn)在移動(dòng)端網(wǎng)頁(yè)使用比較多,若還用GIF做loading圖片的話,可能會(huì)影響圖像的質(zhì)量,所以使用SVG是一個(gè)不錯(cuò)的方式。
這次展示的代碼由 Aurer 編寫,前端人員只需要直接復(fù)制想要的SVG代碼就能直接使用,而且可以改變顏色。當(dāng)然,對(duì)于好學(xué)的同學(xué),也可以研究下這個(gè)代碼的編寫原理。
下面我們來看一下具體的'兩個(gè)加載相關(guān)的用法:
ionic 加載動(dòng)作 $ionicLoading
$ionicLoading 是 ionic 默認(rèn)的一個(gè)加載交互效果。里面的內(nèi)容也是可以在模板里面修改。
使用實(shí)例:
HTML 代碼:
XML/HTML Code復(fù)制內(nèi)容到剪貼板TheStooges{{stooge.name}}
JavaScript 代碼
JavaScript Code復(fù)制內(nèi)容到剪貼板 angular.module(‘ionicApp‘,[‘ionic‘]) .controller(‘AppCtrl‘,function($scope,$timeout,$ionicLoading){ //Setuptheloader $ionicLoading.show({ content:‘Loading‘, animation:‘fade-in‘, showBackdrop:true, maxWidth:200, showDelay:0 }); //Setatimeouttoclearloader,howeveryouwouldactuallycallthe$ionicLoading.hide();methodwhenevereverythingisreadyorloaded. $timeout(function(){ $ionicLoading.hide(); $scope.stooges=[{name:‘Moe‘},{name:‘Larry‘},{name:‘Curly‘}]; },2000); });
$ionicLoadingConfig
使用實(shí)例:
HTML 代碼
XML/HTML Code復(fù)制內(nèi)容到剪貼板
CSS 代碼
CSS Code復(fù)制內(nèi)容到剪貼板 body{ cursor:url(‘http://www.runob.com/try/demo_source/finger.png‘),auto; } p{ text-align:center; margin-bottom:40px!important; } .spinnersvg{ width:19%!important; height:85px!important; }
JavaScript 代碼
JavaScript Code復(fù)制內(nèi)容到剪貼板 angular.module(‘ionicApp‘,[‘ionic‘]) .controller(‘MyCtrl‘,function($scope){ });
【講解使用SVG制作loading加載動(dòng)畫的方法】相關(guān)文章: