提取 initCover 函数
Extracting the initCover function
我得到了这些指示:
我需要这样做。
删掉initCover
函数
写initCover
函数原来的地方
将 initCover
函数粘贴到 videoPlayer.init
代码上方。
这是怎么做到的?
videoPlayer.init({
afterPlayerReady: function initCover() {
manageCover.init(function playVideo() {
videoPlayer.play();
});
}
});
不确定问题出在哪里,(您是否收到任何 错误 消息?)...
//# Cut out the "initCover" function
//# Paste the "initCover" function above the "videoPlayer.init" code.
function initCover()
{
manageCover.init(
function playVideo()
{
videoPlayer.play();
}
);
}
//# Write "initCover" where the function used to be
videoPlayer.init( initCover() ); //# eg: run initCover function from here
我得到了这些指示:
我需要这样做。
删掉
initCover
函数写
initCover
函数原来的地方将
initCover
函数粘贴到videoPlayer.init
代码上方。
这是怎么做到的?
videoPlayer.init({
afterPlayerReady: function initCover() {
manageCover.init(function playVideo() {
videoPlayer.play();
});
}
});
不确定问题出在哪里,(您是否收到任何 错误 消息?)...
//# Cut out the "initCover" function
//# Paste the "initCover" function above the "videoPlayer.init" code.
function initCover()
{
manageCover.init(
function playVideo()
{
videoPlayer.play();
}
);
}
//# Write "initCover" where the function used to be
videoPlayer.init( initCover() ); //# eg: run initCover function from here