Open mikelevy opened 7 years ago
Hello, the marker's element property can not only bind text, but also bind htmlelement, for your case, you can bind htmlelement and then use jquery to bind click function.
Answer your second question, since each marker can bind html element, so you can add javascript on your end.
like
var player = videojs("playerid");
player.on("timeupdate", function(){
var time = player.currentTime;
});
hey, answer your second question, you can set up 'keypoint' and 'duration' property
like
{
id: "custom-hotspot-text-1",
location: {
lat: -10,
lon: 190
},
radius: 500,
element: "text 1",
keyPoint: 10,
duration: 2000
},
Hello, Im using the beta version and i have some questions about using the markers:
Thanks