0.10.0
Pre-releaseIn 0.10.0, we make a big refactor on the events system which can help us to solve the problem described in #106 and #102.
We introduce event options. It's the key to use the new event system.
event options
We now can pass in event option to provide more info for event.
The event options including two parameter, target
and stage
, they are both optional.
target
target means the target you need to listen on, you can value below.
'kernel' | 'container' | 'wrapper' | 'video' | 'video-dom' | 'plugin' | 'esFullscreen'
For example, you used to listen on container by c_
.
// what you used to do
player.on('c_click', event => console.log(event));
// what you can do now
player.on('click', event => console.log(event), { target: 'container' });
stage
stage means the event stage, it includes 'before' | 'main' | 'after' | '_'
so you can listen on before play event
like this:
// what you used to do
player.on('beforePlay', event => console.log(event));
// what you can do now
player.on('play', event => console.log(event), { stage: 'before' });
emit
So you can clarify the target of your event emit.
player.emit({
name: 'click',
target: 'container',
});
registerEvents
In some situation, the developer may create their own kernel events. So we provide a new interface for developer to register events.
But we can just register kernel events now.
import Chimee from 'chimee'
Chimee.registerEvents({
name: 'test',
target: 'kernel',
});
chimee-kernel
We have merged chimee-kernel into chimee. That make chimee's layer clearer and easier to understand.
useStyleFullscreen
In some situation, the browser's fullscreen api do not perform well. We can use css to simulate fullscreen. You can just set useStyleFullscreen
to be true
like this:
Chimee.config.useStyleFullscreen = true;
dynamic $autoFocus
You can change plugin's autoFocus setting whenever you want now.
New immediate
seek on silentload
We will seek to the current time when you are using silentload
with immediate
as true
.
panorama
We published chimee-plugin-panaroma to help you play panorama video. (#66)
You can see the demo on https://chimeejs.github.io/chimee-plugin-panorama/