顺时针或逆时针旋转网页

发布于 2024-10-28 17:32:07 字数 86 浏览 1 评论 0原文

我想为用户提供旋转网页内容的选项,包括图像、文本和 div。这可能吗?

PS:

我想旋转整个网页。不仅仅是一个容器 div。

I want to give user the option to rotate the content of my webpage, including images, text and divs. Is this possible?

PS:

I want to rotate the entire webpage. Not just a container div.

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

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

发布评论

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

评论(3

浅忆流年 2024-11-04 17:32:07

您可以使用 CSS3

-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);   

http://jsfiddle.net/KdNNy/1/

不适用于所有不过浏览器。此示例仅适用于 Firefox 和 chrome/safari。歌剧应该也有。也许甚至是 IE

编辑

,以防万一有人认为“哦,他只是旋转了一个 DIV!”,请检查这个

http://jsbin.com/utupu5/(整页)

You could use CSS3

-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);   

http://jsfiddle.net/KdNNy/1/

Doesn't work on all browsers though. This example is only for firefox and chrome/safari. Opera should have it as well. Maybe even IE

EDIT

And just in case anyone thinks "oh he's just rotating a DIV!", check this

http://jsbin.com/utupu5/ (full page)

祁梦 2024-11-04 17:32:07

我听说实现这一目标的唯一方法是将 HTML 嵌入到 SVG 外部内容元素中。

the only way I have heard of to make this achieved is embeding your HTML in a SVG foreign content element.

夜光 2024-11-04 17:32:07

如果您使用 jQuery,则可以使用 jRumble 插件来实现此目的。

可以在此处找到相关网站

If you're using jQuery you can use the jRumble plugin to achieve this

The relevant website can be found here

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