3

アプリのスライド ボックスが ipad3 mini で奇妙に動作します。

画面から指を離して右にスライドすると、ページが完全にスライドしません。写真のように止まります。

これは、左ではなく右にスライドした場合にのみ発生します。画面をクリックすると、通常の状態にスライドします。

これを修正するためにできることはありますか?

ここに画像の説明を入力 すべてがクロムとiPadエミュレーターでうまく機能します。

// Ionic Starter App

// angular.module is a global place for creating, registering and retrieving Angular modules
// 'starter' is the name of this angular module example (also set in a <body> attribute in index.html)
// the 2nd parameter is an array of 'requires'
var app = angular.module('starter', ['ionic'])

.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    // Hide the accessory bar by default (remove this to show the accessory bar above the keyboard
    // for form inputs)
    if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
    }
    if(window.StatusBar) {
      StatusBar.styleDefault();
    }
  });
})

.controller('MediaCtrl', function($scope) {

    $scope.allImages = [{
        'src' : 'img/pic1.jpg'
    }, {
        'src' : 'img/pic2.jpg'
    }, {
        'src' : 'img/pic3.jpg'
    }, {
        'src' : 'img/pic4.jpg'
    }, {
        'src' : 'img/pic4.jpg'
    }, {
        'src' : 'img/pic5.jpg'
    }, {
        'src' : 'img/pic6.jpg'
    }, {
        'src' : 'img/pic7.jpg'
    }, {
        'src' : 'img/pic8.jpg'
    }, {
        'src' : 'img/pic9.jpg'
    }, {
        'src' : 'img/pic10.jpg'
    }, {
        'src' : 'img/pic11.jpg'
    }];

});
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>

    <link href="lib/ionic/css/ionic.css" rel="stylesheet">
    <link href="css/style.css" rel="stylesheet">

    <!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
    <link href="css/ionic.app.css" rel="stylesheet">
    -->

    <!-- ionic/angularjs js -->
    <script src="lib/ionic/js/ionic.bundle.min.js"></script>

    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
  </head>
<body ng-app="starter">

    <ion-pane>
        <ion-content ng-controller="MediaCtrl" >
            <div>
                 <ion-slide-box show-pager="false">
                    <ion-slide ng-repeat="image in allImages">
                        <img ng-src="{{image.src}}" />
                    </ion-slide>           
                </ion-slide-box>
            </div>           
        </ion-content>
    </ion-pane>
</body>
</html>

4

0 に答える 0