七夏 发表于 2025-1-2 17:42:51

推荐一个CSS3卡片hover动画效果

<p><img src="https://www.3bbs.cn/index-diy/img.php?url=https://mmbiz.qpic.cn/sz_mmbiz_gif/dLtTnNkuaUw1ggKx7awKRicHHFPctejZb1vcxgNSiaczUHORvuOTLr8u3V3edoe2e0ibAamj9xG9cEHGQ9X9jiaZRA/640?wx_fmt=gif&amp;from=appmsg&amp;tp=webp&amp;wxfrom=5&amp;wx_lazy=1&amp;wx_co=1" alt="图片" /></p>
<pre><code>&lt;!DOCTYPE html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
  &lt;meta charset=&quot;UTF-8&quot;&gt;
  &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;
  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
  &lt;title&gt;Document&lt;/title&gt;
&lt;/head&gt;
&lt;style&gt;
  body {
    padding: 200px;
    background-color: #000;
  }
  .cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .cards .red {
    background-color: #f43f5e;
  }
  .cards .blue {
    background-color: #3b82f6;
  }
  .cards .green {
    background-color: #22c55e;
  }
  .cards .card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 100px;
    width: 250px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 400ms;
  }
  .cards .card p.tip {
    font-size: 1em;
    font-weight: 700;
  }
  .cards .card p.second-text {
    font-size: .7em;
  }
  .cards .card:hover {
    transform: scale(1.1, 1.1);
  }
  .cards:hover&gt;.card:not(:hover) {
    filter: blur(10px);
    transform: scale(0.9, 0.9);
  }
&lt;/style&gt;
&lt;body&gt;
  &lt;div class=&quot;cards&quot;&gt;
    &lt;div class=&quot;card red&quot;&gt;
      &lt;p class=&quot;tip&quot;&gt;Hover Me&lt;/p&gt;
      &lt;p class=&quot;second-text&quot;&gt;Lorem Ipsum&lt;/p&gt;
    &lt;/div&gt;
    &lt;div class=&quot;card blue&quot;&gt;
      &lt;p class=&quot;tip&quot;&gt;Hover Me&lt;/p&gt;
      &lt;p class=&quot;second-text&quot;&gt;Lorem Ipsum&lt;/p&gt;
    &lt;/div&gt;
    &lt;div class=&quot;card green&quot;&gt;
      &lt;p class=&quot;tip&quot;&gt;Hover Me&lt;/p&gt;
      &lt;p class=&quot;second-text&quot;&gt;Lorem Ipsum&lt;/p&gt;
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</code></pre>

huakhl 发表于 2025-1-3 09:28:42

多谢分享哦
页: [1]
查看完整版本: 推荐一个CSS3卡片hover动画效果