Trying to create a video background using Ionic and AngularJS. I attempted to insert this code into the HTML, but the video is not working:
<source class="cvideo" src="background/{{current.currently.icon}}" type="video/webm">
When running it, the result obtained is as follows:
<source class="cvideo" src="background/'{{current.currently.icon}}'" type="video/webm">
However, if I remove the path background
and only use {{current.currently.icon}}
, the result displays the name of the video instead.