- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想放入框内的图像以与框相同的方式倾斜。我希望图像不会像盒子那样歪斜。问题是我已经将 skew(-20deg)
设置为框,当我在图像上设置 skew(20deg)
时,它不起作用。图像不会直立。有什么解决办法吗?
.accordion {
width: 100%;
height: 300px;
overflow: hidden;
max-width: 100%;
margin: 50px auto;
background-color: #FFAE00;
}
.accordion ul {
width: 90%;
display: table;
table-layout: fixed;
margin: 0;
padding: 0;
margin-left: 5%;
height: 100%;
}
.accordion ul li {
display: table-cell;
vertical-align: bottom;
position: relative;
margin-left: 0;
margin-right: 0;
width: 25%;
height: 250px;
background-repeat: no-repeat;
background-position: center center;
transition: all 500ms ease;
float: none;
transform: skewX(-20deg);
}
.accordion ul li div {
display: block;
overflow: hidden;
width: 100%;
}
.accordion ul li div a {
display: block;
height: 300px;
width: 37vw;
position: relative;
z-index: 0;
vertical-align: bottom;
padding: 55px 45px;
box-sizing: border-box;
color: #fff;
margin-left: -53px;
text-decoration: none;
transform: skewX(20deg);
font-family: Open Sans, sans-serif;
transition: all 200ms ease;
}
.accordion ul li div a * {
opacity: 0;
margin: 0;
width: 100%;
text-overflow: ellipsis;
position: relative;
z-index: 0;
white-space: nowrap;
overflow: hidden;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
.accordion ul li div a h2 {
font-family: Montserrat, sans-serif;
text-overflow: clip;
font-size: 24px;
text-transform: uppercase;
text-align: left;
border-bottom: unset;
margin-bottom: 2px;
top: 165px;
}
.accordion ul li div a p {
top: 165px;
font-size: 13.5px;
font-weight: 100;
margin-left: 0;
height: auto;
}
.accordion ul li:nth-child(1) {
background-image: url("http://michael-ferry.com/assets/accordion3.jpg");
}
.accordion ul li:nth-child(2) {
background-image: url("http://michael-ferry.com/assets/accordion3.jpg");
}
.accordion ul li:nth-child(3) {
background-image: url("http://michael-ferry.com/assets/accordion3.jpg");
}
.accordion ul li:nth-child(4) {
background-image: url("http://michael-ferry.com/assets/accordion3.jpg");
}
.accordion ul:hover li:hover {
width: 50%;
}
.accordion ul:hover li:hover a {
background: rgba(0, 0, 0, 0.4);
}
.accordion ul:hover li:hover a * {
opacity: 1;
transform: none;
}
<div class="accordion">
<ul>
<li>
<div>
<a href="#">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</a>
</div>
</li>
<li>
<div>
<a href="#">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</a>
</div>
</li>
<li>
<div>
<a href="#">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</a>
</div>
</li>
<li>
<div>
<a href="#">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</a>
</div>
</li>
</ul>
</div>
fiddle :https://jsfiddle.net/c3wbvutw/
最佳答案
我能够使用我之前在评论中所说的方法来管理它。基本上,我使用了 ::before
伪元素来放置背景图像,然后取消倾斜。
检查一下:
/* +++++++++++++++ NEW INFORMATION ++++++++++++++ */
.accordion ul li::before {
content: "";
transform: skewX(20deg);
-ms-transform: skewX(20deg);
-webkit-transform: skewX(20deg);
background-image: url(http://michael-ferry.com/assets/accordion3.jpg);
background-repeat: no-repeat;
background-position: top left;
position: absolute;
transform: translateX(-50%) skewX(20deg);
-webkit-transform-origin: top left;
-ms-transform-origin: top left;
transform-origin: top left;
width: 200%;
height: 100%;
}
/* +++++++++++++++++++++++++++++++++++++++++++++ */
.accordion {
width: 100%;
height: 300px;
overflow: hidden;
max-width: 100%;
margin: 50px auto;
background-color: #FFAE00;
}
.accordion ul {
width: 90%;
display: table;
table-layout: fixed;
margin: 0;
padding: 0;
margin-left: 5%;
height: 100%;
}
.accordion ul li {
display: table-cell;
vertical-align: bottom;
position: relative;
margin-left: 0;
margin-right: 0;
width: 25%;
height: 250px;
background-repeat: no-repeat;
background-position: center center;
transition: all 500ms ease;
float: none;
transform: skewX(-20deg);
overflow: hidden;
}
.accordion ul li div {
display: block;
overflow: hidden;
width: 100%;
}
.accordion ul li div a {
display: block;
height: 300px;
width: 37vw;
position: relative;
z-index: 0;
vertical-align: bottom;
padding: 55px 45px;
box-sizing: border-box;
color: #fff;
margin-left: -53px;
text-decoration: none;
transform: skewX(20deg);
font-family: Open Sans, sans-serif;
transition: all 200ms ease;
}
.accordion ul li div a * {
opacity: 0;
margin: 0;
width: 100%;
text-overflow: ellipsis;
position: relative;
z-index: 0;
white-space: nowrap;
overflow: hidden;
-webkit-transform: translateX(-20px);
transform: translateX(-20px);
-webkit-transition: all 0.4s ease;
transition: all 0.4s ease;
}
.accordion ul li div a h2 {
font-family: Montserrat, sans-serif;
text-overflow: clip;
font-size: 24px;
text-transform: uppercase;
text-align: left;
border-bottom: unset;
margin-bottom: 2px;
top: 165px;
}
.accordion ul li div a p {
top: 165px;
font-size: 13.5px;
font-weight: 100;
margin-left: 0;
height: auto;
}
.accordion ul:hover li:hover {
width: 50%;
}
.accordion ul:hover li:hover a {
background: rgba(0, 0, 0, 0.4);
}
.accordion ul:hover li:hover a * {
opacity: 1;
transform: none;
}
<div class="accordion">
<ul>
<li>
<div>
<a href="#">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</a>
</div>
</li>
<li>
<div>
<a href="#">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</a>
</div>
</li>
<li>
<div>
<a href="#">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</a>
</div>
</li>
<li>
<div>
<a href="#">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>
</a>
</div>
</li>
</ul>
</div>
关于html - 带有倾斜和背景图像的框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44208398/
我是初学者,我正在做一些练习来熟悉 CALayer ... 我只是想知道如何“倾斜”(或倾斜)CALayer 45° 角? 谢谢。 最佳答案 CALayers 有一个属性 affineTransfor
无法理解如何制作this trick或 this与CSS。我的意思是标题和标志。这条线不直。它们是倾斜的/倾斜的边界。能否请您举个例子或只是举例说明这是可行的? 最佳答案 看看https://jsfi
如何倾斜图像?例如,每个角都有一个 CGPoint,其坐标为 - p1、p2、p3、p4。然后,我需要设置 - p4.x+=50,p4.y+=30。因此这个角 (p4) 应该在 2D 透视中拉伸(st
我想弄清楚如何通过仅使用 css 来实现元素底部的跟随边框,并使其尽可能对跨浏览器友好 示例代码,带有标准边框 .object { width: 200px; height: 45p
我正在尝试使用 CSS transform 来倾斜 Bootstrap 导航 li,我可以做到这一点,但是当我尝试扭转内部链接上的倾斜时,li 倾斜也会反转回来。我不知道为什么。我试着做这里接受的答案
这个问题在这里已经有了答案: CSS: Set a background color which is 50% of the width of the window (14 个答案) 关闭 7 年前
我已经创建了一个预定的 div 来与我的导航栏一起使用,但是它弄乱了网站的其余格式。导航栏位于右上角,倾斜的 div 位于其下方,但它弄乱了网页上的所有其他内容。我一直在尝试一切都无济于事。 http
你好,我想像这里的附图一样对步骤菜单进行风格化。我该如何风格化这个?主要问题是菜单右侧的边框。 检查我的 JSFiddle URL https://jsfiddle.net/hcx1pv8x/ , 不
我正在尝试使用 HTML5 在 javascript 中倾斜 svg 元素,例如: 中的矩形元素是倾斜的,但 rect 元素也向右移动(不需要),我尝试手动设置位置使用 transform
目前我对应该倾斜的容器使用clip-path。 .box { height: 150px; line-height: 150px; text-align: center; backgr
我有一个相机从上方指向禅宗花园。然而,相机固定在侧面而不是直接在板的上方。结果,图像看起来像这样(注意矩形的倾斜形状): 有没有办法处理图像,使沙子区域看起来或多或少像一个完美的正方形? cap =
我正在尝试使用倾斜 350 度的 UIScrollview,我首先想到的是使用变换属性,滚动上的倾斜起作用了,但现在滚动上的所有内容看起来都不对,当我谈论所有内容时,我指的是位置和这个卷轴的所有 ch
我需要将我的应用程序升级到 Rails 3.2.16,当时我做了 bundle update rails它给了我以下错误。 Bundler could not find compatible vers
我正在尝试运行 rake db:migrate在本地,但我收到以下错误: Gem::LoadError: You have already activated rake 10.2.2, but you
很难用语言表达我想要完成的事情,所以请查看这张照片作为示例: 如您所见,我希望创建一个带有图案背景的倾斜 div(简单),但另一部分,即倾斜被半遮住的部分,也必须有背景图像。我想到了很多不同的想法,并
假设,我想将两个二维数组添加到第三个二维数组中。 我正在使用以下代码: cudaMallocPitch((void**)&device_a, &pitch, 2*sizeof(int),2); cud
很难用语言表达我想要完成的事情,所以请查看这张照片作为示例: 如您所见,我希望创建一个带有图案背景的倾斜 div(简单),但另一部分,即倾斜被半遮住的部分,也必须有背景图像。我想到了很多不同的想法,并
我刚刚遇到了这种附加字符串的变体,其中包含存储在变量中的值,这是我以前从未见过的。谁能帮我解释一下这是怎么回事? 这是我遇到的情况: var fruit = "banana"; $main = $('
假设,我想将两个二维数组添加到第三个二维数组中。 我正在使用以下代码: cudaMallocPitch((void**)&device_a, &pitch, 2*sizeof(int),2); cud
我正在尝试分析在 Windows 上运行的 Java UI 应用程序的 CPU 使用率。我将它连接到 VisualVM,但看起来 CPU 使用率最高的是 sum.rmi.transport.tcp.T
我是一名优秀的程序员,十分优秀!