爬行的蜗牛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: golang Linux PHP
查看: 96|回复: 0

前端小卡片效果(附源码)

[复制链接]

152

主题

48

回帖

1137

积分

管理员

积分
1137
发表于 2024-12-22 20:30:40 | 显示全部楼层 |阅读模式
640.webp.png

  1. <!DOCTYPE html>
  2. <html lang="en">

  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>Document</title>
  7.     <style>
  8.         @import url('https://fonts.googleapis.com/css2?family=Akshar&family=Koulen&family=Pacifico&family=Roboto:wght@100;300&family=Tapestry&family=Ubuntu&display=swap');

  9.         body {
  10.             background: black;
  11.             height: 100vh;
  12.             overflow: hidden;
  13.             align-items: center;
  14.             display: flex;
  15.             justify-content: center;
  16.         }

  17.         .profile {
  18.             aspect-ratio: 7 / 8;
  19.             background-color: rgba(255, 255, 255, 0.2);
  20.             border-radius: 5px;
  21.             width: 300px;
  22.         }

  23.         .center {
  24.             align-items: center;
  25.             display: flex;
  26.             justify-content: center;
  27.             flex-wrap: wrap;
  28.             height: 300px;
  29.             padding: 20px;
  30.         }

  31.         .white {
  32.             height: 72%;
  33.             position: relative;
  34.             aspect-ratio: 1;
  35.             border: 4px solid white;
  36.             border-radius: 50%;
  37.         }

  38.         .img {
  39.             height: 200px;
  40.             width: 200px;
  41.             border-radius: 50%;
  42.             margin: 8px;
  43.             object-fit: cover;
  44.         }

  45.         .name {
  46.             font-family: 'Pacifico', cursive;
  47.             font-size: 2em;
  48.             color: white;
  49.             margin: 0px;
  50.             text-align: center;
  51.         }
  52.     </style>
  53. </head>

  54. <body>
  55.     <div class="profile">
  56.         <div class="center">
  57.             <div class="white">
  58.                 <img class="img"
  59.                     src="https://images.pexels.com/photos/9818341/pexels-photo-9818341.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" />
  60.             </div>
  61.             <h3 class="name">Patricia</h3>
  62.         </div>
  63.     </div>
  64. </body>

  65. </html>
复制代码


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表