在我的网站上,当前加载时,它会自动播放视频,然后淡入网站。但由于手机数据规则,它无法自动在手机上播放。如何让视频甚至不显示在移动视图上?它会与CSS @media一起使用吗?
答案 0 :(得分:0)
你最好的选择是将它包装在一个班级中(为了这个例子,我将它称为show-desktop
。
以下是构建媒体查询的方法:
@media screen and (max-width:767px){
.show-desktop{
display:none;
}
}
当设备大小为767像素或更小时,这会隐藏类show-desktop
的内容。
答案 1 :(得分:0)
我至少看到两个选项:
1.使用JavaScript检测移动浏览器。链接在这里:
javascript - How to detect mobile device and get user agent info send and save that information to database on server, only once? - Stack Overflow
2。使用@media查询。链接在这里:
How To Use CSS3 Media Queries To Create a Mobile Version of Your Website | Smashing Magazine