CSS 旋转:Flash 不旋转

发布于 2024-12-10 11:29:56 字数 1636 浏览 0 评论 0原文

我有一个父div,里面有一个flash 电影。 我旋转父 div,因此我希望 Flash 影片也旋转。

不幸的是这并没有发生。 Flash 影片没有旋转。

这是我的代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

<style>
    .rotate
    {
        position: absolute;
        top: 100px;
        left: 250px;
        width:800px;
        height: 800px;
        background-color: #f00; 


        -webkit-transform:rotate(-45deg);
        -ms-transform:rotate(-45deg);
        -moz-transform:rotate(-45deg);
        -o-transform:rotate(-45deg);
        transform:rotate(-45deg);
    }
</style>

</head>

<body>

<div class="rotate">
    <h1>Youtube Flash Video:</h1>
    <object width="420" height="315"><param name="movie" value="http://www.youtube.com/v/KMU0tzLwhbE?version=3&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/KMU0tzLwhbE?version=3&amp;hl=en_US" type="application/x-shockwave-flash" width="420" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object>

</div>

</body>
</html>

这就是它在浏览器中的样子

在此处输入图像描述

你知道我如何得到这个吗Flash 电影与其父级一起旋转?

多谢! 文森特

I have a parent div with a flash movie in it.
I rotate the parent div, so I expect that the flash movie is also rotated.

Unfortunatly this doesn't happen. The flash movie has no rotation.

This is my code

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>

<style>
    .rotate
    {
        position: absolute;
        top: 100px;
        left: 250px;
        width:800px;
        height: 800px;
        background-color: #f00; 


        -webkit-transform:rotate(-45deg);
        -ms-transform:rotate(-45deg);
        -moz-transform:rotate(-45deg);
        -o-transform:rotate(-45deg);
        transform:rotate(-45deg);
    }
</style>

</head>

<body>

<div class="rotate">
    <h1>Youtube Flash Video:</h1>
    <object width="420" height="315"><param name="movie" value="http://www.youtube.com/v/KMU0tzLwhbE?version=3&hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/KMU0tzLwhbE?version=3&hl=en_US" type="application/x-shockwave-flash" width="420" height="315" allowscriptaccess="always" allowfullscreen="true"></embed></object>

</div>

</body>
</html>

And this is how it looks like in the browser

enter image description here

Do you know how I can get this flash movie rotating with its parent?

Thanks a lot!
Vincent

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

很快妥协 2024-12-17 11:29:56

YouTube 嵌入的新方式解决了我的问题。

http://apiblog.youtube.com/2010 /07/new-way-to-embed-youtube-videos.html

The new way of youtube embedding solved my problem.

http://apiblog.youtube.com/2010/07/new-way-to-embed-youtube-videos.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文