我有一个 html 播放器应用程序,用户可以在其中搜索一个词,然后用这些词出现的时间填充结果。单击该特定句子时,html 播放器从该位置开始播放。但是有了这个功能,我想在视频时间线上添加一些标记,就像我们在 youtube 中看到的那样。
像 youtube 一样,您可以在特定时间看到黄色标记。我希望 css 标记位于特定位置的方式相同。
在右侧的搜索框中,如果在 19:00 分钟有一个句子,那么我想在视频时间轴的 19:00 设置黄色标记。
关于搜索按钮的点击事件:
HTML:
<button class="btn btn-default side-search" type="button" data-ng-click="inlinSearch()"></button>
JS:
var onSearchSuccess = function (response) {
$scope.inlineSearchResult = response.data;
$scope.jsonResult = JSON.parse($scope.inlineSearchResult);
};
$scope.inlinSearch = function () {
var counterSearch = 0;
var textSearch = $scope.searchkey.toLowerCase().trim();
scopraServices.searchWithin(textSearch, videoId)
.then(onSearchSuccess, function () {
alert("Search Operation failed");
});
};
使用 ng-repeat 我绑定了视图中的值:
<section class="scroll-content-container">
<article class="scroll-content" data-ng-repeat="sr in jsonResult" data-ng-click="Seek(sr.Location)">
<a>[{{util.formatTime(sr.Location)}}]</a>
<p ng-bind-html=util.boldText(searchkey,sr.Result[0].Text)></p>
</article>
</section>
提前致谢。