首页 >web前端 >css教程 >如何仅倾斜 CSS 网格容器中图像的末端?

如何仅倾斜 CSS 网格容器中图像的末端?

Mary-Kate Olsen
Mary-Kate Olsen原创
2024-12-10 17:49:11611浏览

How to Skew Only the Ends of Images in a CSS Grid Container?

消除多个倾斜图像分类的末端

在上一个问题中,找到了一种倾斜图像分类的解决方案。虽然代码允许调整每个图像的大小,但它没有提供仅在容器内部倾斜最左侧和最右侧框的预期效果。

为了实现这一点,需要一个更精细的解决方案正如 CSS-Tricks 上发表的一篇文章所证明的那样。此方法可以添加悬停效果和图像之间的间隙。

新代码

.gallery {
  --s: 50px; /* control the slanted part */  
  display: grid;
  height: 350px;
  gap: 8px;
  grid-auto-flow: column;
  place-items: center;
}
.gallery > img {
  width: 0;
  min-width: calc(100% + var(--s));
  height: 0;
  min-height: 100%;
  object-fit: cover;
  clip-path: polygon(var(--s) 0,100% 0,calc(100% - var(--s)) 100%,0 100%);
  cursor: pointer;
  transition: .5s;
}
.gallery > img:hover {
  width: 15vw; 
}
.gallery > img:first-child {
  min-width: calc(100% + var(--s)/2);
  place-self: start;
  clip-path: polygon(0 0,100% 0,calc(100% - var(--s)) 100%,0 100%);
}
.gallery > img:last-child {
  min-width: calc(100% + var(--s)/2);
  place-self: end;
  clip-path: polygon(var(--s) 0,100% 0,100% 100%,0 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  align-content: center;
  background: #ECD078;

如何仅倾斜 CSS 网格容器中图像的末端?
如何仅倾斜 CSS 网格容器中图像的末端?
如何仅倾斜 CSS 网格容器中图像的末端?
如何仅倾斜 CSS 网格容器中图像的末端?
如何仅倾斜 CSS 网格容器中图像的末端?
如何仅倾斜 CSS 网格容器中图像的末端?

以上是如何仅倾斜 CSS 网格容器中图像的末端?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn