最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to embed videos in Angular2? - Stack Overflow

programmeradmin1浏览0评论

I want to develop single page application. It is a video portal, where users can login, see video listings, navigate to a single video, rate videos and can perform all media related tasks for example: Play, Pause, Adjust volume and seek video position.

Since there is <video> tag in HTML5, Is it possible to use HTML5 tags inside appponent.html to embed videos?
Or could it be a library that I have to install it from angular2 and then call it inside appponent.ts file?
Or maybe there is another way!

I want to develop single page application. It is a video portal, where users can login, see video listings, navigate to a single video, rate videos and can perform all media related tasks for example: Play, Pause, Adjust volume and seek video position.

Since there is <video> tag in HTML5, Is it possible to use HTML5 tags inside app.ponent.html to embed videos?
Or could it be a library that I have to install it from angular2 and then call it inside app.ponent.ts file?
Or maybe there is another way!

Share Improve this question asked Jul 27, 2017 at 4:48 Zainab HammamiZainab Hammami 4312 gold badges6 silver badges15 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

No need to involve Angular, unless you find a need. Inside of your Angular template you can use any HTML tags, as long as they are supported by the browsers you wish to support.

Simply include the HTML5 <video> tag in your app.ponent.html template and point the src attribute to the file location of your video -

<video width="320" height="240" controls>
    <source src="movie.mp4" type="video/mp4">
    Your browser does not support the video tag.
</video>

Example was copied from the W3Schools HTML Video tag page

Just include the HTML5 tag in your ponent.html

<video width="xx" height="xx" controls>
    <source src="yourVideo.mp4" type="video/mp4">
</video>
发布评论

评论列表(0)

  1. 暂无评论