html中的占位图怎么做,css+html实现一个简单的Skeleton Screen-加载占位图(带动画)...

效果

自上而下渐隐渐现

bVbHkEm

源码

html,用的angular语法,只要做简单的修改就可以成为你需要的语法

css

.skeletonItem {

padding: 16px;

border-bottom: 3px solid #eee;

}

.skeletonText {

height: 16px;

background: #e2e2e2;

margin-top: 12px;

border-radius: 4px;

}

.skeletonText:first-child {

margin-top: 0;

}

.anim-opacity2 {

animation: 1.5s opacity2 0s infinite;

}

.animation-delay0 {

animation-delay: 0s;

}

.animation-delay1 {

animation-delay: 0.5s;

}

.animation-delay2 {

animation-delay: 1s;

}

@keyframes opacity2 {

0% {

opacity: 0.5

}

50% {

opacity: 1;

}

100% {

opacity: 0.5;

}

}

欢迎小伙伴点赞收藏,想用的时候copy一下就可以

好的,以下是一个简单的联系人页面的 HTML 代码和 CSS 样式。 HTML 代码: ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>联系人页面</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div class="header"> <h1>联系人信息</h1> </div> <div class="contacts"> <div class="contact"> <img src="https://via.placeholder.com/150" alt="头像"> <div class="info"> <h2>姓名</h2> <p>电话:123456789</p> <p>邮箱:xxx@xxx.com</p> </div> </div> <div class="contact"> <img src="https://via.placeholder.com/150" alt="头像"> <div class="info"> <h2>姓名</h2> <p>电话:123456789</p> <p>邮箱:xxx@xxx.com</p> </div> </div> <div class="contact"> <img src="https://via.placeholder.com/150" alt="头像"> <div class="info"> <h2>姓名</h2> <p>电话:123456789</p> <p>邮箱:xxx@xxx.com</p> </div> </div> </div> </div> </body> </html> ``` CSS 样式: ```css .container { max-width: 600px; margin: 0 auto; padding: 20px; } .header { text-align: center; margin-bottom: 30px; } .contacts { display: flex; flex-wrap: wrap; } .contact { width: 100%; margin-bottom: 20px; } @media screen and (min-width: 600px) { .contact { width: calc(50% - 10px); margin-right: 20px; } .contact:nth-child(2n) { margin-right: 0; } } .contact img { display: block; width: 100%; height: auto; margin-bottom: 10px; } .info { text-align: center; } .info h2 { margin-bottom: 5px; } .info p { margin: 0; } ``` 这段代码会生成一个联系人页面,包含一个标题和三个联系人信息。其,头像图片使用了一个位符图片。CSS 样式使用了 flexbox 布局来排列联系人信息,同时使用了媒体查询来实现页面的自适应。在屏幕宽度小于 600px 时,联系人信息会排成一列,而在大于等于 600px 时,联系人信息会排成两列。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值