在图像上添加产品列表

时间:2019-01-31 11:44:04

标签: javascript html css shopify shopify-template

我正在使用minimal template中的Shopify,并希望重新创建该图像。我曾尝试研究类似的例子,但似乎找不到任何东西。我如何创建该图像?如何在菜单后面获取图像?

Trying to Create

任何获得形象的链接或文档都将真正有帮助。

1 个答案:

答案 0 :(得分:0)

尝试分解设计以找出其组成部分。您需要背景图像和带有产品卡的覆盖图。您想通过将position:relative相对于父对象和position:absolute应用于子对象,将叠加层放置在图片的顶部,以便将其放置在其父对象中。然后应用transform:translate()来根据叠加层的大小转换叠加层,以实现右侧的偏移量。

这是一支笔:https://codepen.io/NeilWkz/pen/qgRMyW

<div class="img-hero-with-menu-overlay">
 <div class="left-img">
  </div>
  <div class="overlay">
    <div class="product-card">
      <img src="https://lorempixel.com/300/150/" alt="">
      <div class="info">
        <h3>Product 1</h3>
        <p>lorem</p>
      </div>
    </div>
    <div class="product-card">
      <img src="https://lorempixel.com/300/150/" alt="">
      <div class="info">
        <h3>Product 2</h3>
        <p>lorem</p>
      </div>
    </div>
    <div class="product-card">
      <img src="https://lorempixel.com/300/150/" alt="">
      <div class="info">
        <h3>Product 3</h3>
        <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. </p>
      </div>
    </div>
  </div>
</div>

CSS

img-hero-with-menu-overlay {
  position: relative;
  background-color: #bcbdc0;
  width: 100%;
  display: block;
}
.left-img {
  height: 100vh;
  display: block;
  width: 75%;
  background: url("https://www.llialighting.com/Content/files/ProductImages/v_06f3_angled448253599.png")
    no-repeat center center;
  background-size: cover;
}
.overlay {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-12.5%, -50%);
  width: 40%;
}

.product-card {
  display: flex;
  margin-bottom: 1.5rem;
}

.info {
  padding: 1.5rem;
}