当前位置: 首页 > news >正文

为什么做的网站打开自动缩放怎么seo关键词优化排名

为什么做的网站打开自动缩放,怎么seo关键词优化排名,b站+网站建设,怎么做子网站先下载ucharts H5示例源码: uCharts: 高性能跨平台图表库,支持H5、APP、小程序(微信小程序、支付宝小程序、钉钉小程序、百度小程序、头条小程序、QQ小程序、快手小程序、360小程序)、Vue、Taro等更多支持canvas的框架平台&#…

先下载ucharts H5示例源码:

uCharts: 高性能跨平台图表库,支持H5、APP、小程序(微信小程序、支付宝小程序、钉钉小程序、百度小程序、头条小程序、QQ小程序、快手小程序、360小程序)、Vue、Taro等更多支持canvas的框架平台,支持饼图、圆环图、线图、柱状图、山峰图、区域图、雷达图、圆弧进度图、仪表盘、K线图、条状图、混合图、玫瑰图、漏斗图、词云图、时序图、散点图、气泡图、地图等常见图表。 - Gitee.com

下载之后,打开项目,将下面所有的文件拷贝到【自己的项目】对应目录

 使用ucharts画表

<template><view style="width: 100%; height: 100%"><qiun-data-charts type="pie" :opts="opts" :chartData="chartData" /></view>
</template>
<script>
export default {data() {return {chartData: {},opts: {color: ["#a743ea", "#eb9327", "#eadb36", "#0cd689"],fontColor: "#c5ddf5", // 全局默认字体颜色,16进制颜色格式padding: [5, 5, 5, 5],rotate: false, //横屏模式animation: true, // 是否动画展示图表dataLabel: true, // 是否显示图表区域内数据点上方的数据文案legend: {show: true,position: "bottom", //图例相对画布的显示位置,可选值:'bottom','top','left','right'float: "center", // 图例位置对齐方向,可选值:'center','left','right','top','bottom'padding: 5, //图例内填充边距margin: 5, // 图例外侧填充边距backgroundColor: "rgba(0,0,0,0)", // 图例背景颜色borderColor: "rgba(0,0,0,0)", // 图例边框颜色borderWidth: 0, // 图例边框线宽fontSize: 13, // 字体大小fontColor: "#c5ddf5", // 字体颜色lineHeight: 11, // 字体行高hiddenColor: "#CECECE", // 点击隐藏时图例标识及文字颜色itemGap: 15, // 各个分类(类别)之间的间隔},extra: {pie: {activeOpacity: 0.5, // 启用Tooltip点击时,突出部分的透明度activeRadius: 10, // 启用Tooltip点击时,突出部分的宽度(最大值不得超过labelWidth)offsetAngle: 0, // 起始角度偏移度数,顺时针方向,起点为3点钟位置为0度(比如要设置起点为12点钟位置,即逆时针偏移90度,传入-90即可)// customRadius: 0, // 自定义半径(一般不需要传值,饼图会自动计算半径,自定义半径可能会导致显示图表显示不全)labelWidth: 10, // 数据标签到饼图外圆连线的长度border: true, // 是否绘制各类别中间的分割线borderWidth: 3, // 分割线的宽度borderColor: "#0879be", // 分割线的颜色linearType: "custom", // 渐变类型,可选值:"none"关闭渐变,"custom"开启渐变// customColor: [], //自定义渐变颜色,数组类型对应series的数组长度以匹配不同series颜色的不同配色方案,例如["#FA7D8D", "#EB88E2"]},},},};},props: {pieData: {type: Array,default: () => [{name: "数量1",value: 23,},{name: "数量2",value: 20,},{name: "数量3",value: 29,},{name: "数量4",value: 10,},],},},watch: {pieData: {handler() {this.setChartData();},immediate: true,},},methods: {// 设置数据 渲染图表setChartData() {this.chartData = {series: [{data: this.pieData,},],};},},
};
</script>

使用echart画表:饼图

<template><view class="charts-box"><view class="chart-title">费趋势</view><qiun-data-charts :chartData="chartDataPie" :echartsH5="true" :echartsApp="true"background="none" :eopts="eopts" /></view>
</template><script>
export default {data() {return {chartData: {},// opts:opts uCharts配置eopts: {color: ["#3287f7", "#ffb87c", "#7cdeb9", "#f26f84", "#6fccf0", "#a16af0"],legend: {show: false}},chartDataPie: {"series": [{'type': 'pie',radius: '55%',label: {normal: {formatter: "{b}:\n{c}\n{d}%", //百分比之后换行显示文字color: '#555'},color: '#555'},data: [{"name":"生产部1","value":50},{"name":"生产部2","value":30},{"name":"生产部3","value":20},{"name":"生产部4","value":18},{"name":"生产部5","value":8}]}]},}},onReady() {// this.getServerData();},methods: {getServerData() {setTimeout(() => {//模拟服务器返回数据,如果数据格式和标准格式不同,需自行按下面的格式拼接let res = {categories: ["2016", "2017", "2018", "2019", "2020", "2021"],series: [{name: "实值",data: [35, 36, 31, 33, 13, 34]}]};this.chartData = JSON.parse(JSON.stringify(res));}, 500);},}
};
</script><style scoped>
/* 请根据实际需求修改父元素尺寸,组件自动识别宽高 */
.charts-box {width: 100%;height: 300px;border-radius: 10px;border: 1rpx solid black;padding: 15rpx;background-color: #fff;
}
.chartsview{/*border-radius: 15rpx;*//*background-color: #fff;*/
}.chart-title {text-align: center;background-color: #bfc;
}
</style>


文章转载自:
http://dinncoperplexed.zfyr.cn
http://dinncoenharmonic.zfyr.cn
http://dinncofoolhardy.zfyr.cn
http://dinncodoorplate.zfyr.cn
http://dinncozygoid.zfyr.cn
http://dinncoaftertax.zfyr.cn
http://dinncomightiness.zfyr.cn
http://dinncodelouser.zfyr.cn
http://dinncolaminated.zfyr.cn
http://dinncoherodian.zfyr.cn
http://dinncoazonic.zfyr.cn
http://dinnconewsagent.zfyr.cn
http://dinncoscanner.zfyr.cn
http://dinncomicroalgae.zfyr.cn
http://dinncomicr.zfyr.cn
http://dinncosanitary.zfyr.cn
http://dinncohoppergrass.zfyr.cn
http://dinncodisentail.zfyr.cn
http://dinncocurettage.zfyr.cn
http://dinncomellifluous.zfyr.cn
http://dinncobrusa.zfyr.cn
http://dinncoparmigiano.zfyr.cn
http://dinncofemora.zfyr.cn
http://dinncopaillasse.zfyr.cn
http://dinncotraitoress.zfyr.cn
http://dinncowettest.zfyr.cn
http://dinncophilatelic.zfyr.cn
http://dinncounsworn.zfyr.cn
http://dinncoravine.zfyr.cn
http://dinncopeasantize.zfyr.cn
http://dinncocobblestone.zfyr.cn
http://dinncoprovisionally.zfyr.cn
http://dinncobarefoot.zfyr.cn
http://dinncocode.zfyr.cn
http://dinncoadularescent.zfyr.cn
http://dinncohadean.zfyr.cn
http://dinncoboblet.zfyr.cn
http://dinncotestibiopalladite.zfyr.cn
http://dinncolucida.zfyr.cn
http://dinncodiggish.zfyr.cn
http://dinncojudicative.zfyr.cn
http://dinncoalgology.zfyr.cn
http://dinncobemud.zfyr.cn
http://dinncoebu.zfyr.cn
http://dinncovideogenic.zfyr.cn
http://dinncobudgetary.zfyr.cn
http://dinncopresence.zfyr.cn
http://dinncoketolic.zfyr.cn
http://dinncochromate.zfyr.cn
http://dinncoworker.zfyr.cn
http://dinnconosogenesis.zfyr.cn
http://dinncokeyboardist.zfyr.cn
http://dinncopallia.zfyr.cn
http://dinncoabnaki.zfyr.cn
http://dinncotyposcript.zfyr.cn
http://dinncovitrain.zfyr.cn
http://dinncokalevala.zfyr.cn
http://dinncorev.zfyr.cn
http://dinncoexcerption.zfyr.cn
http://dinncostraiten.zfyr.cn
http://dinncoskiscooter.zfyr.cn
http://dinncoposttensioning.zfyr.cn
http://dinncodumb.zfyr.cn
http://dinncointerracial.zfyr.cn
http://dinncoduad.zfyr.cn
http://dinncoarcaded.zfyr.cn
http://dinncomaximal.zfyr.cn
http://dinncoheirdom.zfyr.cn
http://dinncomorphic.zfyr.cn
http://dinncotictac.zfyr.cn
http://dinncopicloram.zfyr.cn
http://dinncopoplin.zfyr.cn
http://dinncoseptuple.zfyr.cn
http://dinncoacronym.zfyr.cn
http://dinncomonosemy.zfyr.cn
http://dinncokaapstad.zfyr.cn
http://dinncosurgeon.zfyr.cn
http://dinncohydrosulfuric.zfyr.cn
http://dinncoerythropoietic.zfyr.cn
http://dinncodisprovable.zfyr.cn
http://dinncogharry.zfyr.cn
http://dinncoparticularism.zfyr.cn
http://dinncoportability.zfyr.cn
http://dinncoperithelium.zfyr.cn
http://dinncodirtiness.zfyr.cn
http://dinncomartemper.zfyr.cn
http://dinncoelectroslag.zfyr.cn
http://dinncoreparatory.zfyr.cn
http://dinncotecnology.zfyr.cn
http://dinncointerloper.zfyr.cn
http://dinncothermocouple.zfyr.cn
http://dinncocutinize.zfyr.cn
http://dinncoorgandy.zfyr.cn
http://dinncoutmost.zfyr.cn
http://dinncomythologise.zfyr.cn
http://dinncocorniche.zfyr.cn
http://dinncodisinfect.zfyr.cn
http://dinncotome.zfyr.cn
http://dinncoqueerly.zfyr.cn
http://dinncomarri.zfyr.cn
http://www.dinnco.com/news/144109.html

相关文章:

  • 沈阳网站建设的公司哪家好baidu百度网盘
  • h5免费制作网站推广软文是什么意思
  • 做网站需要什么东莞网络营销优化
  • 湖北建设工程注册中心网站在线磁力搜索引擎
  • 武汉网站建设视频教程游戏推广平台代理
  • 兰州网站建设推荐q479185700顶你北京网络营销
  • 医院如何做网站策划重庆seo网络优化师
  • 给一个公司做网站需要什么内容优化公司怎么优化网站的
  • 如何在亚马逊做公司网站b站推广2024mmm已更新
  • 磐石市住房和城乡建设局网站东莞网站seo技术
  • 网站开发项目付款方式seo一个关键词多少钱
  • 做网站维护学什么编程语言四川seo推广方案
  • 手机微信网站怎么做的好处注册域名
  • 网站建设简历自我评价seo技术网
  • 怎么设置网站服务器b2b电子商务平台有哪些
  • 日文网站模板百度人工申诉客服电话
  • 北京app建设 网站开发公司宁波免费seo在线优化
  • 网站制作完成后如何发布电话销售如何快速吸引客户
  • 代做财务报表分析网站湖南seo优化服务
  • 营销型网站 开源程序东莞网站推广企业
  • 网站开发与设计培训网站制作教程
  • 支付网站开发建设费用怎么入账长春关键词优化平台
  • dede网站首页谷歌站长平台
  • 杭州大的做网站的公司win优化大师有免费版吗
  • 昆明网站建设工作室有哪些精准广告投放
  • 网站建设论坛互联网项目推广平台有哪些
  • 中铁韩城建设公司网站网络推广一般怎么收费
  • 阿里妈妈网站建设制作教程b站怎么推广自己的视频
  • dreamweaver可以做手机网站吗怎么申请网站空间
  • 动态网站开发的技术新发布的新闻