forked from 0x2620/oxjs
video editor improvements
This commit is contained in:
parent
f8ec3fccf4
commit
a1deb20f97
8 changed files with 89 additions and 50 deletions
|
|
@ -245,6 +245,16 @@ Ox.SmallVideoTimeline = function(options, self) {
|
|||
self.$image.options({
|
||||
duration: value
|
||||
});
|
||||
} else if (key == 'in') {
|
||||
self.$image.options({
|
||||
'in': value
|
||||
});
|
||||
setPointMarker('in');
|
||||
} else if (key == 'out') {
|
||||
self.$image.options({
|
||||
out: value
|
||||
});
|
||||
setPointMarker('out');
|
||||
} else if (key == 'paused') {
|
||||
self.$positionMarkerRing.css({
|
||||
borderColor: 'rgba(255, 255, 255, ' + (self.options.paused ? 0.5 : 1) + ')'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue