在使用角度倍数选择Module NPM Link时,我实际上遇到了问题。我成功地能够选择多个图像。但是我通过拖动选择图像失败了(这是可能的并且在模块Demo Link的演示中显示
我实际上正在尝试ng-repeat中的模块。
.row(multiple-selection-zone='')
.col-lg-2.col-md-2(multiple-selection-item='', ng-class="{'selecting': isSelecting ,'selected': isSelected}" ng-repeat="product in products track by $index")
img(src="{{product.image ? product.image : product.s3Image}}")
它的CSS是:
style.
.selected {
background-color: green !important;
}
.selecting {
background-color: yellow !important;
}
img {
height: 200px;
width: auto;
max-width: 500px;
float: left;
margin-top: 5px;
margin-right: 5px;
margin-bottom: 5px;
margin-left: 5px;
}
我无法找到放置多选区和多选项的位置。我已经尝试了将它们放在行,col和img中的各种组合。我甚至试图通过Inspect Element将我的代码与demo的代码相匹配。但没有积极的结果。
有人可以指导我吗?