我目前正在第一个网站上工作,尝试创建两个动画时遇到了问题。悬停该元素时,将文本移动到图像上方(在本示例中为“ Krow Logo”),放大图像并更改其不透明度。到目前为止很好。

问题是,我也希望在此动画期间在元素h3中过渡一个小的文本。这并非以我尝试过的所有方式起作用。我想象这是继承的问题,所以我尝试将父级的属性专门更改为其第二个子级。没运气。

我想保留溢出:隐藏在h2(Krow徽标)上,但不保留在h3上,因为我希望h3移到父框的外侧。

任何提示,不胜感激!

我摆弄了:nth-​​child尝试更改属性溢出:隐藏到可见

我尝试创建位置设置为相对的祖父母元素。

我试过+〜>组合器的组合

它们都不起作用。

的CSS


@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);
figure.snip1104:first-child {
  font-family: 'Raleway', Arial, sans-serif;
  position: absolute;
  left:20%;
  overflow: hidden;
  margin: 10px;
  min-width: 220px;
  max-width: 310px;
  max-height: 220px;
  width: 100%;
  background: #000000;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

figure.snip1104 h2 {
  position: absolute;
  left: 40px;
  right: 40px;
  display: inline-block;
  background: #000000;
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(0, -50%);
  padding: 12px 5px;
  margin: 0;
  top: 50%;
  text-transform: uppercase;
  font-weight: 400;
}

figure.snip1104:hover h2,
figure.snip1104.hover h2 {
  -webkit-transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
  transform: skew(-10deg) rotate(-10deg) translate(-150%, -50%);
}

figure.snip1104 h3 {
    opacity:0;
  z-index: 5;
  position: absolute;
  left: 40px;
  right: 40px;
  display: inline-block;
  padding: 12px 5px;
  margin: 0;
  top: 110px;
  overflow: visible;


}

figure.snip1104:hover h3,
figure.snip1104.hover h3{
    opacity:1;
    background-color:green;
    transform: translateY(200%);
}



的HTML


<figure class="snip1104 blue">
    <img class="temp" src="/home/it21366/Desktop/liberty/tshirtblue.jpg" alt="sample33"/>
    <figcaption>
        <h2>Krow <span> Logo</span></h2>
        <h3>tesssst</h3>
    </figcaption>

    <a href="#"></a>
</figure>



我希望发生的效果是,尽管tessst移出了它的边界,但它会溢出父片段并保持可见。而是,h3消失了(移至位置,但被隐藏了)

最佳答案

好吧,我创建了一个示例来展示您如何解决所遇到的问题(根据我对问题的理解)。基本上,您为标题和图像创建一个容器,并根据容器的悬停状态控制标题/图像。

我已经解决了解决元素移动问题所需的所有步骤,因此您必须将其以有意义的方式应用到自己的解决方案中(例如使用大小调整,display: none,无论您想要什么)。

还有一些用JavaScript触发此事件的方法,但我想展示仅CSS的解决方案。

如果您运行该代码段,则应全屏查看它,否则它看起来很糟糕,因为我将视口单位用于页面高度。或签出代码笔并将编辑器放在左侧或右侧,以获取更大的显示高度。

https://codepen.io/zenRyoku/pen/oRdYzB?editors=1100



@import url(https://fonts.googleapis.com/css?family=Raleway:400,800);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Raleway', Arial, sans-serif;
}

.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: slategray;
}

.main-heading,
.sub-heading {
  padding: 2rem;
  color: white;
  background: rgba(0,0,0,.6);
  transition: all 300ms;
  text-align: center;
}

.main-heading {
  transform: translateY(200%);
}

.sub-heading {
  opacity: 0;
}

.container:hover .main-heading {
  transform: translateY(0px);
}

.container:hover .sub-heading {
  opacity: 1;
  transform: translateY(-200%);
}

<div class="page">
  <div class="container">
    <h2 class="main-heading">Logo</h2>
    <img src="https://source.unsplash.com/400x300/?japan,sign"/>
    <h3 class="sub-heading">some other text</h3>
  </div>
</div>

关于html - 将特定的属性传递给选定的 child ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56305280/

10-10 22:23