垂直滚动无法在离子状态下工作

时间:2014-11-26 15:56:24

标签: javascript css ionic-framework

我的页面上有两个ion-scroll元素,顶部有一个水平滚动,下面是一个应该垂直滚动的列表。

问题在于它没有。它只是反弹到列表顶部。

示例:http://codepen.io/CaffGeek/pen/LEVdVY

我发现,如果我在垂直离子滚动上设置一个高度,它就会起作用。但这需要在多个设备上工作,我不知道要使用多少高度。我宁愿不必看事件,每次都要重新计算高度。有谁知道如何解决这个问题?

HTML

<html ng-app="ionicApp">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <title>Ionic List Scroll Bug</title>

    <link href="http://code.ionicframework.com/nightly/css/ionic.min.css" rel="stylesheet">
    <script src="http://code.ionicframework.com/nightly/js/ionic.bundle.min.js"></script>
  </head>

  <body ng-controller="MyCtrl">

    <header class="bar bar-header bar-positive">
      <h1 class="title">Ionic List Scroll Bug</h1>
    </header>

    <ion-content class="has-header">
        <ion-scroll delegate-handle="calendarScroll" direction="x">
            <div class="row">
                <div class="col col-20" ng-repeat="day in payPeriod.days">
                    <div class="row">
                        <div class="col">{{day.name}}</div>
                    </div>
                    <div class="row">
                        <div class="col">{{day.number}}</div>
                    </div>
                </div>
            </div>
        </ion-scroll>

        <ion-scroll delegate-handle="taskScroll" direction="y">
            <ul class="list">
                <li class="list-item" ng-repeat="task in tasks">
                    <div class="row">
                        <div class="col col-80">
                            <p>{{task.name}}</p>
                        </div>
                        <div class="col col-20">
                            <label class="item item-input">
                                <input type="text" placeholder="Hours" ng-value="task.time" />
                            </label>
                        </div>
                    </div>
                </li>
          </ul>
          </ion-scroll>
  </ion-content>

    <ion-footer-bar align-title="right" class="bar-stable">
        <div class="buttons">
            <button class="button">Save</button>
        </div>
        <h1 class="title">Total hours 0.00</h1>
    </ion-footer-bar>
  </body>
</html>

的JavaScript

angular.module('ionicApp', ['ionic'])

.controller('MyCtrl', function($scope) {
  $scope.payPeriod = {
            days: [{ name: 'Mon', number: 3 }, { name: 'Tue', number: 4 }, { name: 'Wed', number: 5 },
                { name: 'Thu', number: 6 }, { name: 'Fri', number: 7 }, { name: 'Sat', number: 8 }, { name: 'Sun', number: 9 }]
        };
  $scope.tasks = [
    {name: 'task 1', time: 1.0 },
    {name: 'task 2', time: 3.0 },
    {name: 'task 3', time: 2.0 },
    {name: 'task 4', time: 1.0 },
    {name: 'task 5', time: 2.0 },
    {name: 'task 6', time: 1.0 },
    {name: 'task 7', time: 1.0 },
    {name: 'task 8', time: 2.0 },
    {name: 'task 9', time: 1.0 },
    {name: 'task 0', time: 1.0 }
  ];
});

2 个答案:

答案 0 :(得分:14)

这是一个简单的解决方案:

Codepen illustrating a simple fix

以下是我们正在做的事情:

ion-scroll[direction=x] {
  width: 100vw;
}
ion-scroll[direction=y] {
  height: 100vh;
}

这将允许您的卷轴在您的Ionic应用程序中按预期工作(事实上,这是我在我的工作中作为CSS样板的一部分)。

GIF:对CodePen

采取行动

答案 1 :(得分:2)

混合解决方案让您尝试:

也许这不是最好的解决方案,但至少允许滚动,如果您愿意,可以试试:

只需将整个页面内容包装到具有绝对位置的<div>中,并定义是否滚动y和/或x:

<div style='position:absolute; top:0; right:0; bottom:0; left:0; overflow-y:scroll; overflow-x: hidden'>
    <!-- your content of page here .... -->
</div>

为我工作。 Windows 10上的浏览器兼容性,使用离子包为Meteor JS(没有Angular JS):

:-)显示上的滚动条:   - FireFox   - Windows 10 Edge   - MS IE 11

:-(不显示滚动条,但滚动显示:  - 苹果浏览器   - Chrome   - 歌剧

希望这对某些情况有所帮助。