vue3+element plus组件库中el-carousel组件走马灯特效,当图片变动时下面数字也随着图片动态变化

1.效果图

2.html

<section style="height:30%"><div class="left-img1-title"><img src="../assets/img/title.png"alt=""srcset=""><div class="text">回收垃圾数量</div></div><div style=""><el-carousel :interval="4000"indicator-position="none"type="card"height="100px"@change="swch"><el-carousel-item v-for="item in carouselImg":key="item"><h3 text="2xl"justify="center"><img :src="item.img"alt=""srcset=""class="carousel-image"style="height: 100px;"justify="center"></h3></el-carousel-item></el-carousel></div><div class="carousel-text"><div v-for="(item,index) in count":key="index"><div>{{item.name}}</div><div class="text">{{item.data}}kg</div></div></div></section>

3.js 

 // 准备数据 
// 1.vue3采用import的方式引入图片,不然会报错,引入方法之一import bl from '@/assets/img/bl.png'import js from '@/assets/img/js.png'import sl from '@/assets/img/sl.png'import zl from '@/assets/img/zl.png'import zw from '@/assets/img/zw.png'import pie from '@/components/pie.vue' //2.本页面采用第二种方式,结合html代码// 引入本地图片let carouselImg = reactive([{img: bl},{img: js},{img: sl},{img: zl},{img: zw},])//回收列表let countList = reactive([])//回收垃圾数量let count = reactive([{ name: '今日回收数量', data: 0 },{ name: '累计回收总数', data: 0 },{ name: '户均回收量'  , data: 0 }])
// 填充回收量const getNum = (data) => {let list = [1,2,3,4,5]let allCount = 0let allDay = 0data.map(item=> {allCount += (item.weight*100)allDay += (item.weightDay*100)item.typeId=="1026"?list[0]=item:''item.typeId=="4"?list[1]=item:''item.typeId=="2"?list[2]=item:''item.typeId=="1017"?list[3]=item:''item.typeId=="1121"?list[4]=item:''})allCount = (allCount/100).toFixed(2)allDay = (allDay/100).toFixed(2)countList = list// 回收量初始化count[0].data = list[0].weightDaycount[1].data = list[0].weightcount[2].data = list[0].households}// 幻灯片切换(回收量切换)const  swch = (index) => {let list = countListcount[0].data = list[index].weightDaycount[1].data = list[index].weightcount[2].data = list[index].households}

4.css

.left-img1-title-two {width: 27vw;margin: 0 1.875rem;.content {display: flex;justify-content: space-around;margin-bottom: 1.25rem;.bg1 {width: 14.375rem;height: 6.25rem;background: url('../assets/img/1.png') no-repeat;background-size: 14.375rem 6.25rem;display: flex;justify-content: space-around;align-items: center;text-align: center;img {width: 3.125rem;height: 3.125rem;}.shou {color: white;}.text {color: aqua;}}.bg2 {width: 14.375rem;height: 6.25rem;background: url('../assets/img/2.png') no-repeat;background-size: 14.375rem 6.25rem;display: flex;justify-content: space-around;align-items: center;text-align: center;img {width: 3.125rem;height: 3.125rem;}.shou {color: white;}.text {color: aqua;}}}.content1 {display: flex;justify-content: space-around;margin-bottom: 1.875rem;.bg1 {width: 14.375rem;height: 6.25rem;background: url('../assets/img/3.png') no-repeat;background-size: 14.375rem 6.25rem;display: flex;justify-content: space-around;align-items: center;text-align: center;img {width: 3.125rem;height: 3.125rem;}.shou {color: white;}.text {color: aqua;}}.bg2 {width: 14.375rem;height: 6.25rem;background: url('../assets/img/4.png') no-repeat;background-size: 14.375rem 6.25rem;display: flex;justify-content: space-around;align-items: center;text-align: center;img {width: 3.125rem;height: 3.125rem;}.shou {color: white;}.text {color: aqua;}}}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/570713.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数据库MySQL/mariadb知识点——数据类型

数据类型 所谓的列类型&#xff0c;其实就是指数据类型&#xff0c;即对数据进行统一的分类&#xff0c;从系统的角度出发是为了能够使用统一的方式进行管理&#xff0c;更好的利用有限的空间。 在 SQL 中&#xff0c;将数据类型分成了三大类&#xff0c;分别为&#xff1a;数值…

HDFS查看文件的前几行-后几行-行数

随机返回指定行数的样本数据 hadoop fs -cat /test/gonganbu/scene_analysis_suggestion/* | shuf -n 5 返回前几行的样本数据 hadoop fs -cat /test/gonganbu/scene_analysis_suggestion/* | head -100 返回最后几行的样本数据 hadoop fs -cat /test/gonganbu/scene_anal…

psql: FATAL the database system is in recovery解决

报错&#xff1a; FATAL: the database system is in recovery mode 解决思路&#xff1a; 在hawq master节点 1、执行hawq state &#xff0c;提示 database is down 2、查看hawq master进程&#xff1a; ps aux | grep postgresql &#xff0c;发现master进程不在 3、查…

软件工具组功能逆向工程设想

背景&#xff1a;昨天小智公布了软件工具组现在的几个项目组&#xff0c;大概罗列了现阶段软件工具组的主要职能&#xff0c;总结起来说就是将现有设计方案生成渲染图、全景图、视频、CAD等&#xff0c;看完所有这些功能我不禁设想了一下&#xff0c;如果软件工具组的功能逆向工…

FAIL : SSHException: Incompatible ssh peer (no acceptable kex algorithm)

问题描述&#xff1a; 在安装greenplum&#xff0c;执行gpssh-exkeys过程中抛出异常 Incompatible ssh peer (no acceptable kex algorithm) 原因&#xff1a; 由于ssh 6.7以上屏蔽不安全算法 解决&#xff1a; 在/etc/ssh/sshd_config最后加上 KexAlgorithms curve25519…

集群监控之Ganglia的部署

转载地址&#xff1a;https://www.slothparadise.com/how-to-install-ganglia-on-centos-7/ 找了一堆文章&#xff0c;全都误导了&#xff0c;这篇正解。 总结步骤如下&#xff1a; 1、server端 &#xff1a; yum install -y ganglia-gmetad ganglia-web ganglia-gmond rrd…

期货大赛项目|九,fileinput插件的应用

引入JS和CSS bundles.Add(new ScriptBundle("~/bundles/fileinputJs").Include( "~/Content/vendors/bootstrap-fileinput-master/js/fileinput.min.js", "~/Content/vendors/bootstrap-fileinput-master/js/locales/zh.js", "~/Scripts/fi…

redis见解

http://blog.csdn.net/zhiguozhu/article/details/50517527Redis原生session与redis中的session区别原生session在服务器上是以文件的形式存储的&#xff0c;所以其有一些磁盘io上的缺点 1&#xff09; 有哪几种类型的数据结构String——字符串  value 不仅可以是 String&…

快速解读GC日志

文章转载自&#xff1a;http://blog.csdn.net/renfufei/article/details/49230943 本文是 Plumbr 发行的 Java垃圾收集指南 的部分内容。文中将介绍GC日志的输出格式, 以及如何解读GC日志, 从中提取有用的信息。我们通过 -XX:UseSerialGC 选项,指定JVM使用串行垃圾收集器, 并使…

HBase meta元数据损坏导致hbase master初始化失败

故障起因&#xff1a; 跑kylin任务&#xff0c;过程出错&#xff0c;异常信息&#xff1a;Direct buffer memory&#xff0c; java.io.IOException: java.lang.OutOfMemoryError: Direct buffer memoryat org.apache.hadoop.hbase.regionserver.HRegion$RegionScannerImpl.ha…

HBase shell执行批量脚本

场景描述&#xff1a; HBase namespace中有大量无用的小表&#xff0c;占用了过多的block&#xff0c;需要批量删除&#xff0c;了解了一下有两种方式&#xff1a; 1、使用通配符 用drop命令可以删除表。在删除一个表之前必须先将其禁用。 hbase(main):018:0> disable em…

时间序列分析综述

一.基本分类 1.单变量的传统时间序列分析 2.单变量的随机时间序列分析 3.多变量的时间序列分析 建立在回归基础上的两变量序列分析 建立在AR基础上的多变量序列分析 4.截面时序数据结合的分析 转载于:https://www.cnblogs.com/xyp666/p/9220667.html

Ubuntu开启允许root用户远程登录

SSH服务器&#xff0c;可以通过SSH协议来访问远程服务器&#xff0c;代替telnet和ftp。但是ubuntu默认是不启用root用户也不允许root远程登录的。所以需要先启用root用户 1、启用root用户&#xff1a; 第一步 sudo passwd root //修改密码 第二步&#xff1a; vim /usr…

补码(为什么按位取反再加一):告诉你一个其实很简单的问题(转自醍醐灌顶)...

首先&#xff0c;阅读这篇文章的你&#xff0c;肯定是一个在网上已经纠结了很久的读者&#xff0c;因为你查阅了所有你能查到的资料&#xff0c;然后他们都会很耐心的告诉你&#xff0c;补码&#xff1a;就是按位取反&#xff0c;然后加一。准确无误&#xff0c;毫无破绽。但是…

Kettle报错:Entry to update with following key could not be found

问题描述&#xff1a; 一个转换对一个表进行插入操作&#xff0c;第一次查询然后插入数据&#xff0c;但是有些字段需要特殊处理下&#xff0c;也就是要先插入主要的信息&#xff0c;然后针对这个记录根据刚才生成的id进行更新操作&#xff0c;在开发环境上测试没问题&#xf…

IntrospectorCleanupListener作用

https://www.cnblogs.com/qiankun-site/p/5886673.html 1、此监听器主要用于解决java.beans.Introspector导致的内存泄漏的问题 2、此监听器应该配置在web.xml中与Spring相关监听器中的第一个位置(也要在ContextLoaderListener的前面)3、JDK中的java.beans.Introspector类的用途…

CentOS安装Oracle12C

文章转载&#xff1a; https://www.howtoforge.com/tutorial/how-to-install-oracle-database-12c-on-centos-7/

7-2 幼儿园数学题(29 分)

我系渣渣辉&#xff0c;我在梦工厂等你&#xff0c;是兄弟就来砍我啊&#xff01;&#xff01; 刚上幼儿园的渣渣辉迷上了一款名叫贪玩蓝月的新游戏&#xff0c;由于过于沉迷游戏&#xff0c;上课听讲的效率直线下降。 今天&#xff0c;他的数学老师给他布置了一道求解二元一次…

PLSQL中文显示乱码(问号)

1、输入 select * from V$NLS_PARAMETERS 查看第一行value值是否为简体中文 simplified chinese 实际显示为&#xff1a;AMERICAN 2、设置本地环境变量 &#xff1a;NLS_LANG NLS_LANGAMERICAN_AMERICA.ZHS16GBK NLS_LANG的值为三个划线值拼接而成。 3、重新打开PLSQL…

python2精确除法

python2和python3除法的最大区别: python2: print 500/1000 python2结果:取整数部分,小数并没有保留 0Process finished with exit code 0 python3: print 500/1000 python3结果:得到真实结果,小数保留 0.5Process finished with exit code 0 那么,如果python2想保留小数部分,要…