需要angularJS下拉宽度从最左边到最右边填满整个屏幕。

时间:2015-01-09 05:34:31

标签: css angularjs twitter-bootstrap-3 angular-ui-bootstrap

我有一个anglarJS项目,它有一个水平导航栏。导航栏中的每个元素都是一个类别,并使用angularJS下拉指令来显示该类别的子类别。

我希望下拉菜单从左到右填满整个屏幕。目前,下拉列表从css“min-width”属性确定它的宽度。这并不能解决我对下拉菜单填充整个屏幕的渴望,我看到有些网站会这样做,并且想知道是否有办法强制我的下拉菜单从左到右填满整个屏幕。

enter image description here

这是页面/下拉列表的html,包括指定下拉宽度的css。

enter image description here

这是下拉列表的图片。我添加了蓝色箭头来表示当我想要下拉填充整个屏幕时我的意思。

enter image description here

图片分辨率非常高,并向您展示所有细节。该页面相当复杂,可以在一个plunker中尝试和复制。

整个事情也需要响应,并且基于Bootstrap 3和AngularJS Bootstrap。

感谢您提供任何帮助!

大卫

1 个答案:

答案 0 :(得分:1)

我找到了解决问题的方法。

我创建了一个向左浮动的按钮组,它与中心的按钮组位于同一行。向左浮动的按钮组仅包含一个按钮,该按钮将其可见性设置为隐藏。 你有这个按钮附加的下拉菜单,而不是中心的下拉菜单,因为下拉列表不会比它所连接的按钮的开头左边开始更远。

<div class="pull-left">
        <div class="btn-group" dropdown is-open="isOpen">
            <button type="button" style="visibility: hidden" class="btn btn-link dropdown-toggle filter-criteria-variety-category-name" dropdown-toggle ng-disabled="disabled">
                <span class="caret"></span>
            </button>

            <div class="dropdown-menu top-level-category-drop-down-standard" ng-style="{{windowWidth}}" ng-click="$event.stopPropagation()" >
                <div ng-click="$event.stopPropagation()"  ng-mouseleave="close()" ng-mouseenter="keepOpen()">
                    <div ng-if="currentCategory != undefined">
                        <horizontal-menu-inner close-drop-down-menu=$parent.closeDropDownMenu top-level-category=$parent.currentCategory></horizontal-menu-inner>
                    </div>

                </div>
            </div>
        </div>
    </div>

对于包含您想要触发下拉列表的类别的居中按钮组,您将'ioOpen'变量作为属性传递给居中按钮指令。

<div class="text-center">
        <div  class="btn-group">
            <div class="horizontal-top-level-category" ng-repeat="topLevelCategory in categoryNavigationGraph">
                <horizontal-top-level-category is-open=$parent.isOpen current-category-id=$parent.currentCategoryId top-level-category=topLevelCategory></horizontal-top-level-category>
            </div>
        </div>
    </div>

然后根据鼠标是否进入或离开该指令中的按钮,将该指令设置为关闭或打开下拉列表

<button ng-mousemove="activeMenuItemm()" ng-mouseleave="close($event)" ng-mouseenter="open()" type="button"  ng-class="{'filter-criteria-variety-category-name-hover': filterCriteriaCategoryActive}"   class="btn btn-link dropdown-toggle filter-criteria-variety-category-name" ng-disabled="disabled">
{{topLevelCategory.text}}

当您从居中按钮向下拖动到下拉列表时,棘手的部分没有关闭下拉列表

我这样做是通过弄清楚鼠标是否从“向下”离开,这不应该关闭下拉列表,或者其他应该从最后一个位置开始,这是在中心按钮指令链接函数中计算的:

link: function (scope, element) {
        init();
        scopeLevelFunctions();
        function init(){
             calculateBoundry();
        }
        function scopeLevelFunctions(){
            scope.calculateElementBoundry = function(){
                calculateBoundry();
            }
        }
        function calculateBoundry(){
            var boundry =  element[0].getBoundingClientRect();
            scope.boundry = boundry;
            scope.topBoundry = boundry.top;
            scope.bottomBoundry = boundry.bottom;
            scope.leftBoundry = boundry.left;
            scope.rightBoundry = boundry.right;
        }

    },

由mouseenter触发的open函数设置边界,close从该值计算以查看这是否是一个正在离开的mouseleave

$scope.open = function(){
$scope.calculateElementBoundry();
$scope.currentCategoryId = $scope.topLevelCategory.categoryId;
$scope.filterCriteriaCategoryActive = true;
$scope.timeoutPromise = $timeout(function() {
    $scope.isOpen = true;
}, 150);

};

$scope.close = function($event){
$scope.lastPosition = {
    x : $event.clientX,
    y : $event.clientY
};
var deltaX = $scope.lastPosition.x - $event.clientX,
    deltaY = $scope.lastPosition.y - $event.clientY;
if($event.clientY >= ($scope.bottomBoundry - 8))
    $scope.direction = "bottom";
else
    $scope.direction = "other";
if($scope.direction != "bottom"){
    if($scope.timeoutPromise != undefined)
        $timeout.cancel(this.timeoutPromise);
    $scope.isOpen = false;
    $scope.filterCriteriaCategoryActive = false;
}
else{
    if($scope.isOpen == false && $scope.timeoutPromise != undefined){
        $timeout.cancel(this.timeoutPromise);
        $scope.filterCriteriaCategoryActive = false;
    }
}

我把超时放在那里,这样如果用户只是滚动到屏幕的底部,下拉不会出现。如果他们使用mouseleave并且下拉菜单没有打开,我会取消超时。

下拉列表中包含不同的数据,因为居中的类别指令具有属性“categoryId”,该属性与下拉列表所在的指令共享。随着categoryId的更改,该指令确定了新的类别子菜单应该是什么,将其输入下拉列表。

我知道下拉列表应该有多宽,因为在包含下拉/不可见按钮的指令中我计算了窗口宽度:

var width = $window.innerWidth;
            $scope.windowWidth = "{'min-width':" + width + "}";

在下拉列表中我使用ng-style来设置此宽度

ng-style="{{windowWidth}}"

enter image description here enter image description here