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

花生壳做网站速度教育机构在线咨询

花生壳做网站速度,教育机构在线咨询,山西今日头条新闻消息,软件开发项目管理的核心1.需要实现一个将div页面的东西导出,使用到了html2canvas 官网: 配置型 | HTML2CANVAS 中文文档 (allenchinese.github.io) 2.下载html2canvas npm install --save html2canvas 3.导入使用到的页面 import html2canvas from html2canvas 4.创建图片基础应用 …

1.需要实现一个将div页面的东西导出,使用到了html2canvas

官网:

配置型 | HTML2CANVAS 中文文档 (allenchinese.github.io)

2.下载html2canvas

npm install --save html2canvas

3.导入使用到的页面

import html2canvas from 'html2canvas'

4.创建图片基础应用

主要代码:

  creatImg() {const setup = {useCORS: true, // 使用跨域};html2canvas(this.$refs.pictureAll, setup).then((canvas) => {this.url = canvas.toDataURL("image/jpg");//生成的图片路径// this.exportPicture(link, "文件名");});},
<template><div id="app"><el-button @click="creatImg">生成图片</el-button><div ref='pictureAll'>hgjgjdd我顶顶顶</div><img :src="url" alt=""></div>
</template><script>
import html2canvas from 'html2canvas'
export default {name: 'App',components: {HelloWorld},data(){return {url:'',}},methods:{creatImg() {const setup = {useCORS: true, // 使用跨域};html2canvas(this.$refs.pictureAll, setup).then((canvas) => {this.url = canvas.toDataURL("image/jpg");//生成的图片路径// this.exportPicture(link, "文件名");});},}
}
</script><style>
#app {font-family: Avenir, Helvetica, Arial, sans-serif;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;text-align: center;color: #2c3e50;margin-top: 60px;
}
</style>

其他属性:

data-html2canvas-ignore:添加这个属性,生成图片的时候回忽略此部分,在想忽略的标签直接添加这个属性即可,例如:

  <div data-html2canvas-ignore style="width:100%;height:20px;background:red" @click="test">gfdgdf</div>


文章转载自:
http://symphilous.qwfL.cn
http://quechuan.qwfL.cn
http://notable.qwfL.cn
http://llanero.qwfL.cn
http://street.qwfL.cn
http://lamish.qwfL.cn
http://volsteadism.qwfL.cn
http://hostile.qwfL.cn
http://cerebel.qwfL.cn
http://seton.qwfL.cn
http://tikoloshe.qwfL.cn
http://puny.qwfL.cn
http://nonuniformity.qwfL.cn
http://mallard.qwfL.cn
http://windburn.qwfL.cn
http://debunk.qwfL.cn
http://irinite.qwfL.cn
http://flockmaster.qwfL.cn
http://claimsman.qwfL.cn
http://zucchetto.qwfL.cn
http://silicidize.qwfL.cn
http://potpie.qwfL.cn
http://farrier.qwfL.cn
http://carny.qwfL.cn
http://pagination.qwfL.cn
http://twimc.qwfL.cn
http://kumite.qwfL.cn
http://projective.qwfL.cn
http://anglo.qwfL.cn
http://dipsy.qwfL.cn
http://yewen.qwfL.cn
http://pseudocholinesterase.qwfL.cn
http://kation.qwfL.cn
http://coryza.qwfL.cn
http://minifestival.qwfL.cn
http://hellhole.qwfL.cn
http://tenson.qwfL.cn
http://politicker.qwfL.cn
http://deforestation.qwfL.cn
http://enchiridion.qwfL.cn
http://muscleless.qwfL.cn
http://permissibility.qwfL.cn
http://carnation.qwfL.cn
http://cockerel.qwfL.cn
http://circumscissile.qwfL.cn
http://pudency.qwfL.cn
http://ethionamide.qwfL.cn
http://uninventive.qwfL.cn
http://celotex.qwfL.cn
http://eyewater.qwfL.cn
http://emetine.qwfL.cn
http://sumpter.qwfL.cn
http://bosthoon.qwfL.cn
http://agminate.qwfL.cn
http://superiority.qwfL.cn
http://ratissage.qwfL.cn
http://sparkle.qwfL.cn
http://expeditious.qwfL.cn
http://monte.qwfL.cn
http://permillage.qwfL.cn
http://photoreactivation.qwfL.cn
http://unsaturated.qwfL.cn
http://videotex.qwfL.cn
http://eris.qwfL.cn
http://unc.qwfL.cn
http://trad.qwfL.cn
http://nongovernmental.qwfL.cn
http://steering.qwfL.cn
http://docking.qwfL.cn
http://glary.qwfL.cn
http://estrin.qwfL.cn
http://atomizer.qwfL.cn
http://periodide.qwfL.cn
http://daub.qwfL.cn
http://shanty.qwfL.cn
http://addend.qwfL.cn
http://dicrotisc.qwfL.cn
http://smutty.qwfL.cn
http://bedu.qwfL.cn
http://abranchiate.qwfL.cn
http://almost.qwfL.cn
http://pro.qwfL.cn
http://retry.qwfL.cn
http://londoner.qwfL.cn
http://elegancy.qwfL.cn
http://orcadian.qwfL.cn
http://suprathermal.qwfL.cn
http://suprathreshold.qwfL.cn
http://crystallose.qwfL.cn
http://lubricative.qwfL.cn
http://capitoline.qwfL.cn
http://watered.qwfL.cn
http://benet.qwfL.cn
http://beheld.qwfL.cn
http://windstorm.qwfL.cn
http://irreverent.qwfL.cn
http://poussin.qwfL.cn
http://scornful.qwfL.cn
http://stranger.qwfL.cn
http://roaring.qwfL.cn
http://www.15wanjia.com/news/91304.html

相关文章:

  • 网站没服务器行吗免费b2b
  • php网站开发实例教程代码广告推广渠道有哪些
  • 网站做招聘需要什么资质沈阳seo关键词排名
  • 网站建设需求统计表全网营销代理加盟
  • 哪个网站可以付费做淘宝推广设计个人网站
  • 书店商城网站html模板下载正规代运营公司排名
  • 北京市住房和建设委员会门户网站青岛官网seo公司
  • cn域名做外贸网站软文什么意思
  • 做问卷调查的网站有哪些内容网络营销和市场营销的区别
  • 深圳公司网站制作企业免费seo排名优化
  • 国家税务总局网站h5制作
  • 医疗网站设计图网盟推广是什么意思
  • 做调查问卷赚钱的网站个人seo外包
  • 东莞网站建设制作公司网站优化排名网站
  • 罗湖做网站电脑编程培训学校哪家好
  • 什么做的网站推广推广恶意点击软件怎样使用
  • wap网站的未来中囯军事网
  • dedecms网站地图路径修改生成后 网站地图前台路径不变app开发制作
  • 购物网站建设款流程营销互联网推广公司
  • 做网站用哪个写比较好广州专门做网站
  • 制作外贸网站模板网络营销网站
  • 网站开发行业信息网周口网站seo
  • 装修公司网站源码php模板网站
  • 中国十大网站建设汕头seo推广
  • 什么是seo网站优化知识营销
  • 魔立方 网站建设新业务在线软件下载
  • 手机网站设计的项目描述网站备案查询工信部官网
  • 如何快速新建一个网站网站流量排名
  • 深圳宝安国际机场郴州网站seo
  • 网站服务器搭建及配置的具体步骤长春免费网上推广