CSS3旋转div但保持背景不旋转

发布于 2025-01-01 00:31:15 字数 60 浏览 0 评论 0原文

有没有办法使用变换旋转 div 但保持背景不随之旋转?如果没有,是否有其他 jQuery 或其他解决方案?

Is there a way to use transform rotate a div but keep the background from rotating with it? if not is there another solution with a jQuery or something?

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

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

发布评论

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

评论(3

嘿嘿嘿 2025-01-08 00:31:15

你可以尝试这个

<div id="container">
   <div id="yourelement"></div>
</div>

和这个风格

        #container{
            position: absolute;
            top:100px;
            left:100px;
            transform: rotate(30deg);
            -webkit-transform: rotate(30deg);
            -moz-transform: rotate(30deg);
            -o-transform: rotate(30deg);
            width:300px;
            height:300px;
            overflow:hidden;
        }
        #yourelement{
            position: absolute;
            top:-100px;
            left:-50px;
            transform: rotate(-30deg);
            -webkit-transform: rotate(-30deg);
            -moz-transform: rotate(-30deg);
            -o-transform: rotate(-30deg);
            width:500px;
            height:500px;
            background-image:url(../img/bg.jpg);
        }

u can try this

<div id="container">
   <div id="yourelement"></div>
</div>

and this style

        #container{
            position: absolute;
            top:100px;
            left:100px;
            transform: rotate(30deg);
            -webkit-transform: rotate(30deg);
            -moz-transform: rotate(30deg);
            -o-transform: rotate(30deg);
            width:300px;
            height:300px;
            overflow:hidden;
        }
        #yourelement{
            position: absolute;
            top:-100px;
            left:-50px;
            transform: rotate(-30deg);
            -webkit-transform: rotate(-30deg);
            -moz-transform: rotate(-30deg);
            -o-transform: rotate(-30deg);
            width:500px;
            height:500px;
            background-image:url(../img/bg.jpg);
        }
伤感在游骋 2025-01-08 00:31:15

只需添加带有背景的外部包装并旋转内部元素即可。

just add an outside wrapper with the background and rotate the inner element instead.

赠意 2025-01-08 00:31:15

尝试使用 2 个 div 块,并将旋转内容覆盖在固定背景 div 上。使覆盖层透明。希望有帮助。

Try using 2 div blocks and overlay the div with rotating content over the fixed background div. Make overlay transparent. Hope it helps.

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