ionic 바닥 공유 기능 구현
<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="js/lib/ionic1/css/ionic.min.css" rel="external nofollow" >
<script src="js/lib/ionic1/js/ionic.bundle.min.js"></script>
<title>Title</title>
</head>
<body ng-controller="myCtrl">
<!-- -->
<ion-header-bar class="bar-royal">
<h1 class="title"> </h1>
</ion-header-bar>
<!-- -->
<ion-content>
<!-- 1. -->
<ion-refresher
pulling-text=" ..."
on-refresh="doRefresh()">
</ion-refresher>
<!--ng-repent -->
<ul class="list">
<li ng-repeat="g in goodses track by $index">
<span ng-bind="g"></span>
</li>
</ul>
<!-- 1. -->
<ion-infinite-scroll
on-infinite="loadMore()"
distance="3%">
</ion-infinite-scroll>
</ion-content>
<!-- -->
<ion-footer-bar class="bar-royal">
<h1 class="title"> </h1>
<button class="button button-clear" ng-click="share()"><i class="icon ion-share"></i></button>
</ion-footer-bar>
<script>
var app=angular.module("myApp",["ionic"]);
app.controller("myCtrl",["$scope","$ionicActionSheet",function ($scope,$ionicActionSheet) {
$scope.goodses=[];
for(var i=0;i<50;i++){
$scope.goodses.push(i+" ")
}
//
$scope.doRefresh=function () {
$scope.goodses=[]; //
for(var i=0;i<50;i++){
$scope.goodses.push(i+" ****")
}
$scope.$broadcast("scroll.refreshComplete");
}
//
$scope.loadMore=function () {
//
for(var i=0;i<50;i++){
$scope.goodses.push(i+" ++++")
}
$scope.$broadcast("scroll.infiniteScrollComplete");
}
//
// Action Sheet :( )
//
// , $ionicActionSheet
// show()
// return true; ,
$scope.share=function () {
$ionicActionSheet.show({
buttons: [
{ text: '<b> </b> ' },
{ text: '<b> </b>QQ ' },
],
destructiveText: ' ',
titleText: ' ',
cancelText: ' ',
buttonClicked: function(index) {
return true;//
},
destructiveButtonClicked:function () {
console.log(" ****");
return true;//
}
});
}
}])
</script>
</html>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Ionic의 커스텀 컴퍼넌트로 페르소나 5의 UI를 재현해 보았다이 기사에서는 사용자 정의 컴포넌트에서 신 게임 인 페르소나 5의 프레임 UI를 재현합니다. Ionic Ionic CLI : 4.1.0 Ionic Framework : ionic-angular 3.9.2 @ionic...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.