Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/33.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 我的网站有flash需要改变为静态图像时,网站是在手机上查看时使用引导?_Html_Css_Flash_Twitter Bootstrap_Mobile - Fatal编程技术网

Html 我的网站有flash需要改变为静态图像时,网站是在手机上查看时使用引导?

Html 我的网站有flash需要改变为静态图像时,网站是在手机上查看时使用引导?,html,css,flash,twitter-bootstrap,mobile,Html,Css,Flash,Twitter Bootstrap,Mobile,大家好,我第一次使用bootstrap。我使用的是bootstrap3 我已经创建了一个首页,并试图找出当用户在桌面机器上的网站上时,可以看到Flash或swf。但当然,在移动设备上,例如苹果产品,他们无法查看flash或swf文件 当用户使用手机或平板电脑时,有没有一种方法可以让静态图像或旋转木马发挥作用,就像平板电脑和平板电脑中的3行菜单按钮一样 用于测试的Flash页面: 您可以隐藏包含flash for mobile的容器,并用静态图像显示另一个容器 比如: <div class=

大家好,我第一次使用bootstrap。我使用的是bootstrap3

我已经创建了一个首页,并试图找出当用户在桌面机器上的网站上时,可以看到Flash或swf。但当然,在移动设备上,例如苹果产品,他们无法查看flash或swf文件

当用户使用手机或平板电脑时,有没有一种方法可以让静态图像或旋转木马发挥作用,就像平板电脑和平板电脑中的3行菜单按钮一样

用于测试的Flash页面:

您可以隐藏包含flash for mobile的容器,并用静态图像显示另一个容器

比如:

<div class="visible-xs visible-sm">
  ... put your static image here ...
</div>
<div class="visible-md visible-lg">
  ... put your flash here ...
</div>

... 把你的静态图像放在这里。。。
... 把你的闪光灯放在这里。。。

查看更多信息。

非常感谢它的工作,非常感谢。我只需要将bootstrap.css替换为bootstrap.min.css即可。因为bootstrap.min.css可能很混乱,但是与bootstrap.css相比,它拥有所有的css。