在 AngularJS 1.6 中悬停时在 md-select / md 选项上显示图像/背景



我正在尝试将鼠标悬停在 AngularJS 材料md-select下拉列表中,悬停时它会在 div/span 中显示旁边的图像。我正在统一下面的代码,但仍然没有到来:

<md-select id="{{mapping.id}}" ng-model="mapping.value">
  <md-option ng-value="option" 
             ng-mouseenter="show = true" 
             ng-mouseleave="show = false" 
             ng-repeat="map in mapping.values" 
             ng-selected="$first">{{maping.options[$index]}}</md-option>
  <span ng-show="show">
      <img src="{{mapping.image[$index]}}" 
           align-"right" width="60px" 
           height="40px" 
           vertical-align="top"/>
  </span>
</md-select>

并在应用程序中使用以下方法:

scope.shopw = false;

我们可以在悬停时有手表吗? 要有如下所示的内容,http://plnkr.co/edit/j5LBYQCXvN9LhXt25tTb?p=preview

你可以通过编写自己的directive来实现这一点,就像我为你做的那样。请查看这个可运行的小提琴演示

视图:

<div ng-app="sandbox" ng-controller="myCtrl">
  <div layout-gt-sm="row" layout="column" layout-margin>
    <main flex-md="60" flex-order-gt-sm="2">
      <h1 class="md-title">
        Main Content
      </h1>
      <div layout="row" layout-xs="column">
        <div flex="60">
          <md-select ng-model="mapping.value">
            <md-option ng-value="map.name"
                       ng-repeat="map in mapping.values" 
                       ng-selected="$first"
                       container-image
                       class="image-container"
                       image="map.image">{{map.name}}</md-option>
          </md-select>
        </div>
      </div>
    </main>
  </div>
</div>

.CSS

._md {
  overflow: visible;
}
.preview-image {
  position: absolute;
  height:100px;
  width:100px;
  right: -140px;
}

应用:

var myApp = angular.module('sandbox', ['ngMaterial']);
myApp.controller('myCtrl', function($scope) {
  $scope.mapping = {
    value: null,
    values: [ {
        name: "1",
        image: "http://placehold.it/100x100"
      }, {
        name: "2",
        image: "http://placehold.it/100x100"
      }, {
        name: "3",
        image: "http://placehold.it/100x100"
      },
    ]
  }
});
myApp.directive('containerImage', function($compile) {
  return {
    restrict: 'A',
    scope: {
      image: "="
    },
    link: function (scope, element, attrs) {
      element.on('mouseover', function (e) {
        if (element.find("img").length === 0) {
          var imageElement = angular.element('<img class="preview-image" src="'+ scope.image +'" height="100" width="100" />');
          element.append(imageElement);
          $compile(imageElement)(scope);
        } else {
          element.find("img").attr('style', 'display:block');
        }
      });
      element.on('click', function (e) {
          element.find("img").attr('style', 'display:none');
      });
      element.on('mouseleave', function (e) {
          element.find("img").attr('style', 'display:none');
      });
    }
  }
});

最新更新