Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Trying to pause a video on the very last frame appears to not work if the video is on the very last frame.

var app = angular.module('myApp', []);

app.controller('MainCtrl', function ($scope) {

})

app.directive('someVideo', function ($window, $timeout) {
    return {
    	  controller: function($scope) {
        
        },
        link: function (scope, elm) {
            scope.videoPlayer = elm[0];
            scope.keyDownEvent = keyDownEvent;
            scope.currentTime = 0;
            scope.videoPlayer.loop = true;
            
            angular.element($window).bind('keydown',scope.keyDownEvent);
            
            function keyDownEvent(e){
            console.log(e.keyCode);
              	switch(e.keyCode) {
                    case 32: //space
                    	scope.videoPlayer.loop = !scope.videoPlayer.loop;
                    	console.log('spcae: ',scope.videoPlayer.loop);
                      break;
	              	  case 38: //up
	  			            scope.videoPlayer.currentTime = 0;
                      console.log('up: ', scope.videoPlayer.currentTime);
											break;
                		case 40: //down
                      scope.videoPlayer.pause();
											scope.videoPlayer.currentTime = scope.videoPlayer.duration;
                      console.log('down: ', scope.videoPlayer.currentTime);
											break;
              	}
            }
        }
    }
})
body {
  overflow: hidden;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">

<div ng-app="myApp">
    <div ng-controller="MainCtrl">
        <video some-video src="http://nagi.ca/u/google.mp4" autoplay></video>
    </div>
</div>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
180 views
Welcome To Ask or Share your Answers For Others

1 Answer

Change this

scope.videoPlayer.currentTime = scope.videoPlayer.duration;

to this

scope.videoPlayer.currentTime = scope.videoPlayer.duration - 1;

JSFiddle: http://jsfiddle.net/hopkins_matt/4bygou77/5/


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...