npm i --save nativescript-youtubeplayer
- 版本:3.0.1
- GitHub:
- NPM: https://npmjs.net.cn/package/nativescript-youtubeplayer
- 下载
- 昨天: 2
- 上周: 5
- 上个月: 51
NativeScript YoutubePlayer
安装
NativeScript 4x
tns plugin add nativescript-youtubeplayer
NativeScript 3x
tns plugin add [email protected]
配置
Android
Api key 请按照 ➡ 链接 获取您的 API 密钥
重要:确保在 Page 元素中包含 xmlns:ui="nativescript-youtubeplayer"
<ui:YoutubePlayer id="player" apiKey="AIzaSyCDH3BGQZT2ebUfSE8D3I8NLqaCPu4FRh0" src="{{src}}" height="250" width="100%" backgroundColor="gray" />
Angular
import { YoutubePlayerModule } from 'nativescript-youtubeplayer/angular';
@NgModule({
imports: [
YoutubePlayerModule
],
declarations: [
AppComponent
],
bootstrap: [AppComponent]
})
<YoutubePlayer id="player" apiKey="AIzaSyCDH3BGQZT2ebUfSE8D3I8NLqaCPu4FRh0" src="{{src}}" height="250" width="100%" backgroundColor="gray"></YoutubePlayer>
API
方法 | 默认 | 类型 | 描述 |
---|---|---|---|
play() | void | 开始播放当前排队的/加载的视频。 | |
stop() | void | 停止并取消当前视频的加载。 | |
destroy() | void | 销毁视频播放器并释放资源。 | |
pause() | void | 暂停正在播放的视频。 | |
isPlaying() | false | boolean | 返回当前视频是否正在播放。 |
toggleFullscreen() | void | 切换全屏模式。 |
属性
属性 | 默认 | 类型 | 必需 | 描述 |
---|---|---|---|---|
src | null | string |
|
设置要播放的视频Id,例如 (Z0LWuKQcrUA) => https://www.youtube.com/watch?v=Z0LWuKQcrUA |
options | null | Object |
|
播放器选项 可用 仅限 iOS |
isFullScreen | false | boolean |
|
返回播放器是否当前处于全屏模式。 |
示例图像
IOS | Android |
---|---|
待办事项
- [x] IOS
- [x] toggleFullscreen IOS