我有一个flash对象如下
<object data="http://www.learnenglish.org.uk/kids/antics/monkey.swf" width="250" height="200"></object>
我想让flash文件可以在不让flash播放的情况下点击,因此当用户点击其区域时,导航到显示它的页面。
答案 0 :(得分:2)
截取您的Flash文件的屏幕截图,您认为最适合代表该文件的一些框架。也许使用图像编辑器添加标题或其他图形。
然后你将图像包裹在一个锚中:
<a href='/path/to/page/of/flash/file/'>
<img src='/path/to/image' />
</a>
答案 1 :(得分:0)
我已经使用Div overlay
完成了我想要的工作<div style="cursor: copy; position: relative; z-index: 1">
<div id="overlay" onclick="window.alert('hi')" style="opacity: 0; sition: absolute; top: 0; bottom: 0; left: 0; right: 0; display: block; z-index: 2; background-color: red">
</div>
<object data="Handler.ashx?gameId" width="250" height="200"></object>
</div>
如果有人有其他解决方案,请发布。