我尝试使视频背景使用ionic和angularjs我尝试将此代码放在html中但视频无效
<source class="cvideo" src="background/{{current.currently.icon}}" type="video/webm">
运行时得到结果
<source class="cvideo" src="background/'{{current.currently.icon}}'" type="video/webm">
但如果我删除路径background
并仅保留代码{{current.currently.icon}}
获取视频的结果名称
答案 0 :(得分:0)
虽然'
中不应该有href
。使用ng-src
<source class="cvideo" ng-src="{{'background/'+ current.currently.icon + '.webm'}}"
type="video/webm">