我已经使用此代码将我的vimeo视频放入 background 中进行自动播放。
我通过css找到了这个,但是它只能在控制台中运行,但是当我使用我的css文件时,我似乎无法工作。我无法通过css访问iframe
。
我可以通过iframe
网址轻松实现此方法,使其全长且反应灵敏吗?
代码
<iframe src="https://player.vimeo.com/video/76979871?background=1" width="100%" height="450" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
答案 0 :(得分:2)
这是fiddle of a responsive background video。我从this answer改编了CSS以使视频响应。
为了使它成为一个背景,我补充说:
class Parent{}
class Child extends Parent{
public void display(){
System.out.println("Anything");
}
}
Class Main{
public static void main(String[] args){
Parent obj = new Child();
obj.display(); //error No function in Parent Class
}
}