过渡从宽度:100%过渡时为什么会出现跳跃?

huangapple go评论53阅读模式
英文:

Why does transitioning from width: 100% cause the transition to be jumpy?

问题

我创建了一个 JSFiddle 来重新演示这个问题。

我试图让一个网格元素在悬停时变大,但它会导致一个奇怪的问题,它会位于另一个网格元素下方,然后突然变成我预期的样子。

为什么会发生这种情况,有没有办法解决它?

.container {
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-template: 1fr / 1fr 1fr;
  margin: 1em;
  grid-gap: 1em;
}

.box {
  height: 100%;
  width: 100%;
  transition: width 0.5s;
}

.one {
  background: pink;
}

.two {
  background: red;
}

.box:hover {
  width: 60vw;
}
<div class="container">
  <div class="box one"></div>
  <div class="box two"></div>
</div>
英文:

I made a JSFiddle to reenact this problem.

I am trying to get a grid element to grow when hovered, but it causes this weird problem where it goes under the other grid element, then jumps to how I expected and want it to be.

Why does this happen and is there a way to get around it?

<!-- begin snippet: js hide: false console: false babel: false -->

<!-- language: lang-css -->

.container {
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-template: 1fr / 1fr 1fr;
  margin: 1em;
  grid-gap: 1em;
}

.box {
  height: 100%;
  width: 100%;
  transition: width 0.5s;
}

.one {
  background: pink;
}

.two {
  background: red;
}

.box:hover {
  width: 60vw;
}

<!-- language: lang-html -->

&lt;div class=&quot;container&quot;&gt;
  &lt;div class=&quot;box one&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;box two&quot;&gt;&lt;/div&gt;
&lt;/div&gt;

<!-- end snippet -->

答案1

得分: 0

你可以使用 flexboxflex 简写属性:

.container {
  display: flex;
  gap: 1em;
  margin: 1em;
}

.box {
  flex: 1; /* 这使得盒子默认平均占用空间 */
  transition: 0.5s;
}

.box:hover {
  flex: 2; /* 鼠标悬停时,盒子扩展速度是非悬停状态的两倍 */
}

试一试:

<div class="container">
  <div class="box one"></div>
  <div class="box two"></div>
</div>

请注意:这是一个示例,用于演示 flexbox 的使用方法。

英文:

You can use flexbox with the flex short-hand property:

.container {
  display: flex;
  gap: 1em;
  margin: 1em;
}

.box {
  flex: 1; /* This makes boxes take equal space by default */
  transition: 0.5s;
}

.box:hover {
  flex: 2; /* A hovered box expands twice as fast as a non-hovered */
}

Try it:

<!-- begin snippet: js hide: true -->

<!-- language: lang-css -->

.container {
  display: flex;
  gap: 1em;
  margin: 1em;
}

.box {
  flex: 1;
  transition: 0.5s;
}

.box:hover {
  flex: 2;
}


/* Demo only */

body {
  margin: 0;
}

.container {
  height: 100vh;
}

.box {
  height: 100%;
}

.one {
  background: pink;
}

.two {
  background: red;
}

<!-- language: lang-html -->

&lt;div class=&quot;container&quot;&gt;
  &lt;div class=&quot;box one&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;box two&quot;&gt;&lt;/div&gt;
&lt;/div&gt;

<!-- end snippet -->

答案2

得分: 0

我已经写了一篇详细的文章,介绍了如何使用CSS网格实现这种效果。欢迎你阅读这篇文章,以了解如何使用CSS网格实现这种效果:https://css-tricks.com/zooming-images-in-a-grid-layout/

.container {
  height: calc(100vh - 2em);
  display: grid;
  grid-template-columns: auto auto;
  margin: 1em;
  gap: 1em;
}
.box {
  width: 0;
  min-width: 100%;
  transition: width 0.5s;
}
.box:hover {
  width: 40vw; /* 请阅读文章以了解设置此值背后的数学原理 */
}

.one {background: pink;}
.two {background: red;}

body {
  margin: 0;
}
<div class="container">
  <div class="box one"></div>
  <div class="box two"></div>
</div>
英文:

I have wrote a detailed article about such effect that I invite you to read to understand how to achieve such effect using CSS grid: https://css-tricks.com/zooming-images-in-a-grid-layout/

<!-- begin snippet: js hide: false console: false babel: false -->

<!-- language: lang-css -->

.container {
  height: calc(100vh - 2em);
  display: grid;
  grid-template-columns: auto auto;
  margin: 1em;
  gap: 1em;
}
.box {
  width: 0;
  min-width: 100%;
  transition: width 0.5s;
}
.box:hover {
  width: 40vw; /* read the article to understand the math behind setting this value */
}

.one {background: pink;}
.two {background: red;}

body {
  margin: 0;
}

<!-- language: lang-html -->

&lt;div class=&quot;container&quot;&gt;
  &lt;div class=&quot;box one&quot;&gt;&lt;/div&gt;
  &lt;div class=&quot;box two&quot;&gt;&lt;/div&gt;
&lt;/div&gt;

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年6月6日 02:01:18
  • 转载请务必保留本文链接:https://go.coder-hub.com/76408920.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定