blob: 86f524899476c62cbcbf2aeec42ab5f7e814875b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
<div ng-controller="ModalCtrl">
<ion-modal-view cache="false">
<ion-content style="background-color:#444444" ng-cloak>
<ion-scroll has-bouncing=false min-zoom=1 zooming="true"
direction="xy" style="width: 100%; ">
<div style="height: 100vh;">
<ul rn-carousel rn-carousel-buffered
rn-carousel-transition="none" rn-swipe-disabled="true"
rn-carousel-index="mycarousel.index"
rn-carousel-auto-slide="{{calcMsTimer(eFramesNum, eventDur)/1000.0}}" rn-carousel-pause-on-hover >
<li ng-repeat="slide in slides">
<img id="hello" imageonload="finishedLoadingImage($index)"
image-spinner-src="{{eventBasePath}}{{slide.img}}?rand={{rand}}"
image-spinner-loader="lines"
ng-class="{'zm-image-fit':imageFit==true, 'zm-image-crop':imageFit==false}";/>
</li>
</ul>
</div>
</ion-scroll>
</ion-content>
</ion-modal-view>
<nav mfb-menu position="tr" effect="zoomin" label="collapse"
active-icon="ion-chevron-up" resting-icon="ion-chevron-down"
toggling-method="click">
<a mfb-button icon="ion-arrow-resize" label="fit image"
ng-click="scaleImage();"></a>
<!--<a mfb-button icon="ion-reply" label="previous event"
ng-click="controlEventStream(eventCommands.previous)"></a>
<a mfb-button icon="ion-forward" label="next event"
ng-click="controlEventStream(eventCommands.next)"></a>-->
<a mfb-button icon="ion-close"
label="exit event view" ng-click="closeModal()"> </a>
</nav>
<!--
<nav mfb-menu position="bl" effect="zoomin" label="collapse"
active-icon="ion-chevron-down" resting-icon="ion-chevron-up" toggling-method="click">
<a mfb-button icon="ion-refresh" label="refresh" ng-click="reloadView()"></a>
<a mfb-button icon="ion-pause" label="pause"
ng-click="controlEventStream(eventCommands.pause)"></a>
<a mfb-button icon="ion-play" label="play"
ng-click="controlEventStream(eventCommands.play)"></a>
</nav>
<nav mfb-menu position="tr" effect="zoomin" label="collapse"
active-icon="ion-chevron-up" resting-icon="ion-chevron-down"
toggling-method="click">
<a mfb-button icon="ion-ios-fastforward" label="fast forward"
ng-click="controlEventStream(eventCommands.fastFwd)"></a>
<a mfb-button icon="ion-ios-fastforward-outline" label="slow forward"
ng-click="controlEventStream(eventCommands.slowFwd)"></a>
<a mfb-button icon="ion-ios-rewind" label="fast rewind"
ng-click="controlEventStream(eventCommands.fastRev)"></a>
<a mfb-button icon="ion-ios-rewind-outline" label="slow rewind"
ng-click="controlEventStream(eventCommands.slowRev)"></a>
</nav>
<progress max="{{totalEventTime}}" value="{{currentEventTime}}"
class="eventprogress"></progress>
-->
<div class="events-range-modal" >
<div style="width:90%">
<input ng-model="ionRange.index" type="text" id="mySlider2" slider options="slider_modal_options" />
</div>
<!-- <div class="range">
<input type="range" ng-model="ionRange.index" min="0" max="{{eFramesNum-1}}" >
</div>-->
</div>
</div>
|