2015-05-07 02:30:36 +00:00
|
|
|
<h1>Static Markup Sandbox</h1>
|
2015-05-04 23:50:11 +00:00
|
|
|
|
|
|
|
<h2>Plot limits</h2>
|
2015-05-06 17:34:16 +00:00
|
|
|
<div ng-init="limits=[
|
|
|
|
{type: 'upr', severity: 'red', top: 0, bottom: 90},
|
|
|
|
{type: 'upr', severity: 'yellow', top: 10, bottom: 80},
|
|
|
|
{type: 'lwr', severity: 'yellow', top: 70, bottom: 20},
|
|
|
|
{type: 'lwr', severity: 'red', top: 80, bottom: 0}
|
|
|
|
]"></div>
|
2015-05-04 23:50:11 +00:00
|
|
|
<div style="width: 1000px; height: 500px">
|
|
|
|
<div class="gl-plot" style="height: 100%;">
|
|
|
|
<div class="gl-plot-display-area">
|
2015-05-06 17:34:16 +00:00
|
|
|
<div
|
|
|
|
ng-repeat="limit in limits"
|
|
|
|
ng-show="1"
|
2015-05-07 20:10:04 +00:00
|
|
|
class="t-limit l-limit s-limit-{{limit.type}}-{{limit.severity}}"
|
2015-05-06 17:34:16 +00:00
|
|
|
style="top: {{limit.top}}%; bottom: {{limit.bottom}}%"
|
|
|
|
></div>
|
2015-05-04 23:50:11 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-05-07 02:30:36 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2>Animation</h2>
|
|
|
|
<div class="pulse" style="background: #cc0000; color: #fff; padding: 10px;">This should pulse</div>
|