css学习-内容加载占位动画(渐变动画)

news/2024/11/8 17:33:01/

文章目录

    • 学习链接
      • 纯CSS渐变动画
      • 结合vue指令简单使用

学习链接

Git Hub前端50天50个项目 | 第24 内容文本

纯CSS渐变动画

在这里插入图片描述

<style lang="scss" scoped>
.card-wrapper {width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;
}.img {width: 100%;height: 100%;object-fit: cover;
}
.card {width: 260px;border-radius: 6px;overflow: hidden;background-color: #fff;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.05);.card-header {height: 170px;}
}// 卡片头部图片
.card-header img {width: 100%;
}// 卡片内容
.card-content {padding: 20px;.card-title {font-weight: bold;}.card-bio {margin: 5px 0 10px;font-size: 14px;color: #7c7c7c;}.author {display: flex;.author-avatar {width: 42px;height: 42px;border-radius: 50%;overflow: hidden;flex-shrink: 0;}.author-intro {padding-left: 8px;flex: 1;overflow: hidden;display: flex;flex-direction: column;justify-content: space-around;.author-name {font-size: 16px;text-decoration: none;color: #000;text-overflow: ellipsis;white-space: nowrap; /* white-space属性为nowrap时,不会因为超出容器宽度而发生换行 */overflow: hidden;}.author-date {font-size: 13px;color: #7c7c7c;}}}}.animated_txt {height: 20px;border-radius: 8px;
}
.animated_bg {/* 使用渐变作为元素图片,注意这里面的图片是个矢量图片(即:不管放多大,也不会失真。并且元素有多大,它这个背景图片就有多大)*//* 1. 第一个参数是渐变方向2. 后面参数,可以理解为:现确定什么颜色的油漆, 然后从什么位置开始刷, 然后中间渐变*/background-image: linear-gradient(to right, #f6f7f8 0,#d0d1d2 25%,#f6f7f8 50%,#f6f7f8 100%);/* 将背景图片(渐变背景)的x轴方向,设置为元素大小的2倍为什么要改成2倍呢?因为background-position设置背景图片的位移百分比,是相对于 元素的大小 减去 背景图片的大小 的百分比,而默认情况下,这个矢量渐变背景与元素大小相同,因此设置百分比无效(0乘以任何数都是0)。 */background-size: 200% 100%;// background-position: 0% 0;animation: grad 1s linear infinite;
}@keyframes grad {0% {background-position: 0% 0;}100% {background-position: -200% 0;}
}</style><template><div class="card-wrapper"><div class="card"><div class="card-header animated_bg"><!-- <img class="img" src="http://119.23.61.24/api/static/img/article/90876672-26ec54f7c7ea7d27b3079ec685effdf2.jpg" alt=""> --></div><div class="card-content"><div class="card-title animated_bg animated_txt"><!-- PSCOOL的签名 --></div><p class="card-bio animated_bg animated_txt"><!-- 热爱技术, 一点点的学习 --></p><div class="author"><a href="#" class="author-avatar animated_bg"><!-- <img class="img" src="http://119.23.61.24/api/static/img/avatar/avatar.png" alt=""> --></a><div class="author-intro"><a href="#" class="author-name animated_bg animated_txt"><!-- PSCOOL --></a><div class="author-date animated_bg animated_txt"><!-- 2023-05-21 --></div></div></div></div></div></div></template><script>export default {name: '',components: {},methods: {}
}
</script>

结合vue指令简单使用

在这里插入图片描述

  • 在vue指令刚开始绑定到元素上时,给元素加上animated_bg样式,让它产生动画。自定义指令中添加txt修饰符,给默认文本一个高度。
  • 点击按钮时,更新了cardInfo响应式数据的值,当子组件中有用到这个响应式数据时,v-animated_bg指令的componentUpdated方法就会触发,在这个钩子函数中移除值。
<style lang="scss" scoped>
.card-wrapper {width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;
}.img {width: 100%;height: 100%;object-fit: cover;
}
.card {width: 260px;border-radius: 6px;overflow: hidden;background-color: #fff;box-shadow: 0 2px 5px 0 rgba(0,0,0,0.05);.card-header {height: 170px;}
}// 卡片头部图片
.card-header img {width: 100%;
}// 卡片内容
.card-content {padding: 20px;.card-title {font-weight: bold;}.card-bio {margin: 5px 0 10px;font-size: 14px;color: #7c7c7c;}.author {display: flex;.author-avatar {width: 42px;height: 42px;border-radius: 50%;overflow: hidden;flex-shrink: 0;}.author-intro {padding-left: 8px;flex: 1;overflow: hidden;display: flex;flex-direction: column;justify-content: space-around;.author-name {font-size: 16px;text-decoration: none;color: #000;text-overflow: ellipsis;white-space: nowrap; /* white-space属性为nowrap时,不会因为超出容器宽度而发生换行 */overflow: hidden;}.author-date {font-size: 13px;color: #7c7c7c;}}}}.animated_txt {height: 20px;border-radius: 8px;
}
.animated_bg {/* 使用渐变作为元素图片,注意这里面的图片是个矢量图片(即:不管放多大,也不会失真。并且元素有多大,它这个背景图片就有多大)*//* 1. 第一个参数是渐变方向2. 后面参数,可以理解为:现确定什么颜色的油漆, 然后从什么位置开始刷, 然后中间渐变*/background-image: linear-gradient(to right, #f6f7f8 0,#d0d1d2 25%,#f6f7f8 50%,#f6f7f8 100%);/* 将背景图片(渐变背景)的x轴方向,设置为元素大小的2倍为什么要改成2倍呢?因为background-position设置背景图片的位移百分比,是相对于 元素的大小 减去 背景图片的大小 的百分比,而默认情况下,这个矢量渐变背景与元素大小相同,因此设置百分比无效(0乘以任何数都是0)。 */background-size: 200% 100%;// background-position: 0% 0;animation: grad 1s linear infinite;
}@keyframes grad {0% {background-position: 0% 0;}100% {background-position: -200% 0;}
}</style><template><div class="card-wrapper"><button @click="getData">button</button><div class="card"><div class="card-header" v-animated-bg.img><img v-if="cardInfo.bgUrl" class="img" :src="cardInfo.bgUrl" alt=""></div><div class="card-content"><div class="card-title" v-animated-bg.txt><!-- PSCOOL的签名 --> {{ cardInfo.title }}</div><p class="card-bio" v-animated-bg.txt><!-- 热爱技术, 一点点的学习 --> {{ cardInfo.bio }}</p><div class="author"><a href="#" class="author-avatar"  v-animated-bg.img><img v-if="cardInfo.avatar" class="img" :src="cardInfo.avatar" alt=""></a><div class="author-intro"><a href="#" class="author-name" v-animated-bg.txt><!-- PSCOOL --> {{ cardInfo.authorName }}</a><div class="author-date"  v-animated-bg.txt><!-- 2023-05-21 --> {{ cardInfo.date }}</div></div></div></div></div></div>
</template><script>export default {name: '',components: {},data() {return {a:'',cardInfo: {}}},methods: {getData() {this.cardInfo = {bgUrl: 'http://119.23.61.24/api/static/img/article/90876672-26ec54f7c7ea7d27b3079ec685effdf2.jpg',title: 'PSCOOL的签名',bio: ' 热爱技术, 一点点的学习',avatar: 'http://119.23.61.24/api/static/img/avatar/avatar.png',authorName: 'PSCOOL',date: '2023-05-21'}}},directives: {'animated-bg': {bind(el, binding, vnode) {console.log(el,'el-bind');el.classList.add('animated_bg')if(binding.modifiers.txt) {el.classList.add('animated_txt')}},componentUpdated(el, binding) {console.log(el,'el-componentUpdated');el.classList.remove('animated_bg')el.classList.remove('animated_text')}}}
}
</script>

http://www.ppmy.cn/news/77917.html

相关文章

安卓基础巩固(一):工程结构、基本概念、常用布局、基本组件、动画

文章目录 安卓项目结构AndroidMainfest.xmlres资源目录简介 基本概念LayoutR类 Application与ActivityContextIntent数据传递可传递的数据类型intent.putExtra&#xff08;&#xff09;和使用Bundle的区别数据传递大小的限制 通过Intent 过滤器接收隐式 Intent&#xff1a; 单位…

Hadoop部署完全分布式

​ 在真实的企业环境中&#xff0c;服务器集群会使用到多台机器&#xff0c;共同配合&#xff0c;来构建一个完整的分布式文件系统。而在这样的分布式文件系统中&#xff0c;HDFS相关的守护进程也会分布在不同的机器上&#xff0c;例如: NameNode守护进程&#xff0c;尽可能的…

go-gf框架两个表以事务方式写入示例

下面是对每一行代码的中文解释&#xff1a; // 创建数据库连接对象 var tx gdb.TX这行代码声明了一个名为tx的变量&#xff0c;类型为gdb.TX&#xff0c;表示数据库事务对象。 // 开启事务 if tx, err g.DB().Ctx(ctx).Begin(ctx); err nil {这行代码通过在数据库连接&…

Python appium搭建app自动化测试环境

目录 前言 App自动化环境安装 安装安卓开发工具 安装模拟器 前言 appium做app自动化测试&#xff0c;环境搭建是比较麻烦的。 也是很多初学者在学习app自动化之时&#xff0c;花很多时间都难跨越的坎。 但没有成功的环境&#xff0c;就没有办法继续后续的使用。 在app自…

2023 年互联网就业怎样?

来说说我们公司最近的情况&#xff1a; 15K的Java后端程序员&#xff0c;岗位发布一天&#xff0c;收到简历212份&#xff1b; 28K的高级全栈工程师&#xff0c;岗位发布6小时&#xff0c;收到简历349份&#xff1b; 技术主管不信邪&#xff0c;200/天的Python实习生&#xff…

2023-05-24:为什么要使用Redis做缓存?

2023-05-24&#xff1a;为什么要使用Redis做缓存&#xff1f; 答案2023-05-24&#xff1a; 缓存的好处 买啤酒和喝啤酒的例子可以帮助我们理解缓存的好处。 假设你在超市里买了一箱啤酒&#xff0c;如果你需要每次想喝啤酒就去超市购买&#xff0c;无疑会浪费很多时间和精力…

OpenCV的40道入门选择题

以下哪个库可以在Python中使用OpenCV&#xff1f; A. numpy B. matplotlib C. scipy D. all of the above 答案&#xff1a;D 解析&#xff1a;numpy、matplotlib和scipy都是与OpenCV一起使用的常用库。 在OpenCV中&#xff0c;以下哪个函数用于加载图像&#xff1f; A. cv2.i…

Python3安装pyhanlp最佳解决方法

1、Hanlp介绍 Hanlp是一款中文自然语言处理工具。Hanlp支持多种自然语言处理任务&#xff0c;包括分词、词性标注、命名实体识别、依存句法分析、情感分析、文本分类等。其主要优点包括&#xff1a; 高准确率&#xff1a;Hanlp采用了基于神经网络的分词方法&#xff0c;有效提…