我正在尝试在ng-repeat
中实现同步滚动说明:
我在页面顶部有水平位置,垂直产品。
L1 L2 L3 L4 L5
P1
P2
p3
p4
基于产品点击必须显示所有位置的信息。
例如:当用户点击p1时,p1将展开将其称为可扩展div 并显示信息。
L1 L2 L3 L4 L5
P1 1 1 1 1 1 1
2 2 2 2 2
3 3 3 3
4 4 4
5 5
P2
P3
P4
现在问题: 我已经为产品可扩展div提供了滚动功能。现在我想为所有div
进行同步滚动 <div class="workloadInfo" ng-class="cardclass" ng-show="isRelavent({{p.Id}})" >
<div class="designerContainer " data-ng-repeat="process in processInfo | filter:{'ProductId':p.Id}:true | filter:{'ProcessLocationsId':locations.Id}:true" >
<div ng-repeat="d in details | filter:{'Location':locations.Id}:true | filter :{'Product':p.Id}" >
<div ng-repeat="name in d.Lname">
<a title="{{name.Category}}-{{name.Title}}" class="{{name.Category}} designerBox"></a>
</div>
</div>
</div>
</div>