七夏 发表于 2025-1-21 10:52:05

HTML&CSS:超好看的卡片边角丝带特效

<p>这段代码是一个 HTML 页面,它包含了 CSS 样式,用于创建一个具有动态效果的边角丝带卡片,当鼠标悬停在卡片上时,卡片会缩小。</p>
<hr />
<h2>演示效果</h2>
<p><img src="https://www.3bbs.cn/index-diy/img.php?url=https://mmbiz.qpic.cn/sz_mmbiz_gif/vAEun6t7Od9kicyYDibMNp3drTlRGH6Y1UX3h2MlBQ1tgfgicdevhFQLnY5KOBypbgNu0ICUx4oCZyPxOqkvanEpw/640?wx_fmt=gif&amp;from=appmsg&amp;tp=webp&amp;wxfrom=5&amp;wx_lazy=1&amp;wx_co=1" alt="图片" /></p>
<h2>HTML&amp;CSS</h2>
<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 name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;
    &lt;title&gt;公众号关注:前端Hardy&lt;/title&gt;
    &lt;style&gt;
      body {
            margin: 0;
            padding: 0;
            background: #212121;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
      }

      .container {
            display: flex;
            align-items: center;
            justify-content: center;
      }

      .card_box {
            width: 200px;
            height: 250px;
            border-radius: 20px;
            background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
            position: relative;
            box-shadow: 025px50pxrgba(0, 0, 0, 0.55);
            cursor: pointer;
            transition: all .3s;
      }

      .card_box:hover {
            transform: scale(0.9);
      }

      .card_boxspan {
            position: absolute;
            overflow: hidden;
            width: 150px;
            height: 150px;
            top: -10px;
            left: -10px;
            display: flex;
            align-items: center;
            justify-content: center;
      }

      .card_boxspan::before {
            content: '我的相册';
            position: absolute;
            width: 150%;
            height: 40px;
            background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
            transform: rotate(-45deg) translateY(-20px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            box-shadow: 05px10pxrgba(0, 0, 0, 0.23);
      }

      .card_boxspan::after {
            content: '';
            position: absolute;
            width: 10px;
            bottom: 0;
            left: 0;
            height: 10px;
            z-index: -1;
            box-shadow: 140px -140px#cc3f47;
            background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
      }
    &lt;/style&gt;
&lt;/head&gt;

&lt;body&gt;
    &lt;div class=&quot;container&quot;&gt;
      &lt;div class=&quot;card_box&quot;&gt;
            &lt;span&gt;&lt;/span&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/body&gt;

&lt;/html&gt;
</code></pre>
<h2>HTML 结构</h2>
<ul>
<li>container: 创建一个类名为“container”的 div 元素,用于包含卡片。</li>
<li>card_box: 创建一个类名为“card_box”的 div 元素,用于显示卡片。</li>
<li>span: 创建一个空的 span 元素,用于显示“Premium”标签。</li>
</ul>
<h2>CSS 样式</h2>
<ul>
<li>body: 设置页面的边距、填充、背景色、显示方式和高度。</li>
<li>.container: 设置容器的样式,包括显示方式和对齐。</li>
<li>.card_box: 设置卡片的样式,包括尺寸、背景渐变、边框半径、位置、阴影和鼠标指针样式。</li>
<li>.card_box:hover: 设置鼠标悬停在卡片上时的变换效果,使卡片缩小。</li>
<li>.card_box span: 设置 span 元素的样式,包括位置、尺寸、显示方式和对齐。</li>
<li>.card_box span::before: 设置“标题”标签的样式,包括内容、位置、尺寸、背景渐变、变换、显示方式、对齐、颜色、字体权重、字母间距和文本转换。</li>
<li>.card_box span::after: 设置一个装饰性的伪元素,用于创建卡片左下角的阴影效果。</li>
</ul>
页: [1]
查看完整版本: HTML&CSS:超好看的卡片边角丝带特效