gpt4 book ai didi

jquery - 背景图像应该使用 css 成对 Angular 线

转载 作者:太空宇宙 更新时间:2023-11-04 13:00:59 28 4
gpt4 key购买 nike

我正在处理我的作品集。我在正文中有图像我希望图像应该只使用 css/css3/Jquery 对 Angular 线而不是通过 photoshop 编辑我已经尝试对正文使用变换旋转。

但我没有得到结果。

我这里有 fiddle Link

这是它的CSS代码

.fullimg{
background:url('http://i.imgur.com/swudrIP.png') no-repeat fixed center;
-webkit-transform: rotate(15deg);
width: 100%;
height: 100%;
position:absolute;
}

我希望我的输出看起来像下面的 css 类名

.diagonal{
background:url('http://i.imgur.com/ugmhC7w.png?1') no-repeat fixed center;
width: 100%;
height: 100%;
position:absolute;
}

问候马哈德万

最佳答案

如果你想将它应用到 body ,你需要使用伪元素,而不是使用子元素,如 div。

.fullimg:before {
content:"";
position: absolute;
-webkit-transform: rotate(15deg);
width: 100%;
height: 100%;
background-image:url(http://i.imgur.com/swudrIP.png);
}

Link to the jsFiddle

关于jquery - 背景图像应该使用 css 成对 Angular 线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25470053/

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