gpt4 book ai didi

php - HTML\PHP : Flash Player detection technique

转载 作者:太空宇宙 更新时间:2023-11-04 15:40:27 25 4
gpt4 key购买 nike

当我们在我们的网站中放置 flash 文件时,它 OFF-COURSE 需要在客户端机器上安装 flash player,并提示安装 flash player...

是否有一些 php 代码,我可以使用它来检查客户端机器上是否有 flash 播放器,如果没有,那么我不会放置\嵌入 flash 文件,而是将图像放在那里...

因为在我的具体情况下 flash 并不是那么重要...它只是用于化妆品、动画...我可以用 gif 或简单的 jpeg 代替并不重要...

但是我能做到吗

最佳答案

swfobject可以提供帮助。

如果无法显示flash,可以将要显示的内容放在代码中应该显示flash对象的地方,然后将脚本指向即可。

在代码中:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

<title>TestFlash</title>

<!--import the swfobject library /-->
<script type="text/javascript" src="swfobject.js"></script>

<!--Define which div (by ID) gets replaced if flash is present /-->
<script type="text/javascript">
swfobject.embedSWF("myContent.swf", "flash1", "300", "120", "9.0.0");
</script>

</head>

<body>

<h1>We are testing some flash</h1>
<hr />

<div id="flash1">
<!-- This stuff will show if flash is not present on the machine /-->
<img src="/img/image1.jpg" />
</div>

<hr />
<h2>this is a footer</h2>


</body>
</html>

关于php - HTML\PHP : Flash Player detection technique,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3805138/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com