七夏 发表于 2024-12-31 18:41:19

纯CSS实现的悬停3D视差效果!!附源码!!

<p>效果展示</p>
<p><img src="https://www.3bbs.cn/index-diy/img.php?url=https://mmbiz.qpic.cn/sz_mmbiz_gif/OOibJzicqyItdnfg4N7rb6Uia7Fj6sJSBcia8armG8Z9WvfUib17m8OMejLJ3Y5rCLNLnp8M5Oww8OicibIJjLNVn24nA/640?wx_fmt=gif&amp;from=appmsg&amp;tp=webp&amp;wxfrom=5&amp;wx_lazy=1&amp;wx_co=1" alt="图片" /></p>
<p>完整源码</p>
<p><strong>HTML部分</strong></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;!-- 设置页面的编码格式为UTF-8 --&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot; /&gt; &lt;!-- 设置响应式页面的viewport --&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot; /&gt; &lt;!-- 引入外部样式表 --&gt;
    &lt;!-- 引入 Font Awesome 图标库的样式表 --&gt;
    &lt;link
      rel=&quot;stylesheet&quot;
      href=&quot;https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css&quot;
      integrity=&quot;sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==&quot;
      crossorigin=&quot;anonymous&quot;
      referrerpolicy=&quot;no-referrer&quot;
    /&gt;
    &lt;title&gt;Document&lt;/title&gt; &lt;!-- 设置页面标题 --&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;div class=&quot;container&quot;&gt; &lt;!-- 容器div --&gt;
      &lt;div class=&quot;card&quot;&gt; &lt;!-- 卡片div --&gt;
        &lt;div class=&quot;logo&quot;&gt; &lt;!-- Logo的div --&gt;
          &lt;span class=&quot;circle&quot; style=&quot;--i: 0&quot;&gt;&lt;/span&gt; &lt;!-- 五个圆圈,用于制作3D视差效果 --&gt;
          &lt;span class=&quot;circle&quot; style=&quot;--i: 1&quot;&gt;&lt;/span&gt;
          &lt;span class=&quot;circle&quot; style=&quot;--i: 2&quot;&gt;&lt;/span&gt;
          &lt;span class=&quot;circle&quot; style=&quot;--i: 3&quot;&gt;&lt;/span&gt;
          &lt;span class=&quot;circle&quot; style=&quot;--i: 4&quot;&gt;
            &lt;i class=&quot;fa-solid fa-seedling&quot;&gt;&lt;/i  &lt;!-- Font Awesome图标 --&gt;
          &lt;/span&gt;
        &lt;/div&gt;
        &lt;div class=&quot;glass&quot;&gt; &lt;!-- 玻璃效果 --&gt;
          &lt;div class=&quot;content&quot;&gt; &lt;!-- 内容div --&gt;
            &lt;h1&gt;小黑学长T&lt;/h1&gt; &lt;!-- 标题 --&gt;
            &lt;p&gt;此处是小黑学长相关的废话100字...&lt;/p&gt; &lt;!-- 文本内容 --&gt;
          &lt;/div&gt;
          &lt;div class=&quot;footer&quot;&gt; &lt;!-- 页脚div --&gt;
            &lt;div class=&quot;social&quot;&gt; &lt;!-- 社交图标div --&gt;
              &lt;span class=&quot;social_icon&quot; style=&quot;--j: 1&quot;&gt;
                &lt;i class=&quot;fa-brands fa-weixin&quot;&gt;&lt;/i&gt; &lt;!-- 微信图标 --&gt;
              &lt;/span&gt;
              &lt;span class=&quot;social_icon&quot; style=&quot;--j: 2&quot;&gt;
                &lt;i class=&quot;fa-brands fa-qq&quot;&gt;&lt;/i&gt; &lt;!-- QQ图标 --&gt;
              &lt;/span&gt;
              &lt;span class=&quot;social_icon&quot; style=&quot;--j: 3&quot;&gt;
                &lt;i class=&quot;fa-brands fa-discord&quot;&gt;&lt;/i&gt; &lt;!-- Discord图标 --&gt;
              &lt;/span&gt;
            &lt;/div&gt;
            &lt;div class=&quot;link&quot;&gt;
              更多...&lt;i class=&quot;fa-solid fa-arrow-up-right-from-square&quot;&gt;&lt;/i&gt;  &lt;!-- 更多链接及相关图标 --&gt;
            &lt;/div&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
  &lt;/body&gt;
&lt;/html&gt;
</code></pre>
<p><strong>CSS部分</strong></p>
<pre><code>* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 设置根元素变量 */
:root {
  --primary-color: #00894d;
}
/* 设置页面背景样式 */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #dc86fb, #12cfe0);
}
/* 定义3D效果容器 */
.container {
  width: 300px;
  height: 300px;
  perspective: 1000px;
}
/* 卡片样式 */
.card {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(135deg, #00ffd6, #08e260);
  transition: 0.5s ease-in-out;
  transform-style: preserve-3d;
  box-shadow: 40px 50px 25px #05471100, 0px 25px 25px #02140033;
}
/* Logo样式 */
.logo {
  position: absolute;
  top: 0;
  right: 0;
  transform-style: preserve-3d;
}
/* 按钮圆圈样式 */
.logo .circle {
  position: absolute;
  top: calc(var(--i) * 2px + 8px);
  right: calc(var(--i) * 2px + 8px);
  width: calc(170px - var(--i) * 30px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #00f9cd33;
  box-shadow: -10px 10px 20px #64646f33;
  transition: 0.5s ease-in-out;
  backdrop-filter: blyr(5px);
  transform: translate3d(0, 0, calc((var(--i) + 1) * 20px));
  transition-delay: calc(var(--i) * 0.4s);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
}
/* 玻璃样式 */
.glass {
  transform-style: preserve-3d;
  position: absolute;
  inset: 8px;
  background: linear-gradient(#ffffff59, #ffffffd0);
  border-radius: 55px;
  border-top-right-radius: 100%;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transition: 0.5s ease-in-out;
  transform: translate3d(0, 0, 25px);
}
/* 内容样式 */
.content {
  padding: 130px 60px 0 30px;
}
/* 标题样式 */
.content h1 {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 20px;
}
/* 段落样式 */
.content p {
  margin-top: 10px;
  color: #00a15d;
  font-size: 12px;
}
/* 页脚样式 */
.footer {
  transform-style: preserve-3d;
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 页脚链接样式 */
.footer .link {
  transition: 0.2s ease-in-out;
  font-size: 12px;
  color: #00c37b;
  cursor: pointer;
}
/* 鼠标悬停时链接样式 */
.footer .link:hover {
  transform: translate3d(0, 0, 10px);
  color: var(--primary-color);
}
/* 社交图标样式 */
.footer .social {
  transform-style: preserve-3d;
  display: flex;
  gap: 10px;
}
/* 社交图标图标样式 */
.footer .social .social_icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #ffffff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 7px 7px 5px #05471180;
  transition: 0.2s ease-in-out calc(var(--j) * 0.2s);
}
/* 鼠标悬停时卡片样式 */
.container:hover .card {
  transform: rotate3d(1, 1, 0, 30deg);
  box-shadow: 40px 50px 25px #0547110d, 0px 25px 30px #05471111;
}
/* 鼠标悬停时社交图标样式 */
.container:hover .card .footer .social .social_icon {
  transform: translate3d(0, 0, 50px);
  box-shadow: -5px 20px 10px #05471133;
}
/* 鼠标悬停时Logo圆圈样式 */
.container:hover .card .logo .circle {
  transform: translate3d(0, 0, calc(var(--i) * 20px + 40px));
}
</code></pre>
页: [1]
查看完整版本: 纯CSS实现的悬停3D视差效果!!附源码!!