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

定制企业网站市场监督管理局官网入口

定制企业网站,市场监督管理局官网入口,做vi 设计国外网站,企业做网站需注意什么一、背景介绍 最近的业务开发需求,想要实现echarts图表大屏滚动,小编首先采用vue-seamless-scroll进行实现,结果发现第二屏出现空白间隔,尝试了多种解决方案均不生效,最终选择换一个方案。 二、封装的ScrollList组件…

一、背景介绍

最近的业务开发需求,想要实现echarts图表大屏滚动,小编首先采用vue-seamless-scroll进行实现,结果发现第二屏出现空白间隔,尝试了多种解决方案均不生效,最终选择换一个方案。

二、封装的ScrollList组件

<template><div class="scrollContainer" :id="id" @mouseenter="monseenter" @mouseleave="mouseleave"><slot></slot></div>
</template><script>
export default {name: 'ScrollList',props: {id: String},data() {return {timer: null};},methods: {init() {this.setTimer();// this.$once代表只执行一次。如果组件是在keep-alive中包裹,则需要更换函数// 被keep-alive包裹住的组件有两个生命周期函数:activated和deactivatedthis.$once('hook:beforeDestroy', () => {this.removeTimer();});},removeTimer() {if (this.timer) {clearInterval(this.timer);this.timer = null;}},setTimer() {this.removeTimer();this.timer = setInterval(() => {// pixel height:include el and padding    read onlyconst scrollHeight = document.getElementById(this.id).scrollHeight;// visible area height:include el and padding  read onlyconst clientHeight = document.getElementById(this.id).clientHeight;const heightDifference = scrollHeight - clientHeight;// scroll height:readable and writabledocument.getElementById(this.id).scrollTop++;// when el scroll to topif (document.getElementById(this.id).scrollTop >= heightDifference - 1) {this.removeTimer();// make it go back to original location after one secondsetTimeout(() => {document.getElementById(this.id).scrollTop = 0;this.setTimer();}, 1000);}}, 44);},monseenter() {this.removeTimer();},mouseleave() {this.setTimer();}},mounted() {this.init();}
};
</script><style lang="scss" scoped>
.scrollContainer::-webkit-scrollbar {display: none;
}
.scrollContainer::scrollbar {display: none;
}
.scrollContainer {height: 100%;overflow: scroll;overflow-x: hidden;
}
</style>

三、使用ScrollList组件

<template><div><scrollList :id="'leftList'"><!-- todo 写需要循环滚动的代码 --></scrollList></div>
</template><script>import scrollList from '@/components/scrollList/index'export default {components: {scrollList}}
</script>

文章转载自:
http://polltaker.hwLk.cn
http://ulotrichan.hwLk.cn
http://gyrose.hwLk.cn
http://foliiferous.hwLk.cn
http://external.hwLk.cn
http://excitomotor.hwLk.cn
http://geomorphology.hwLk.cn
http://twopence.hwLk.cn
http://edit.hwLk.cn
http://laminaria.hwLk.cn
http://circumvallation.hwLk.cn
http://camiknickers.hwLk.cn
http://doomsayer.hwLk.cn
http://orthoclase.hwLk.cn
http://irrefutable.hwLk.cn
http://tucson.hwLk.cn
http://dhurrie.hwLk.cn
http://wrinkly.hwLk.cn
http://litchi.hwLk.cn
http://heave.hwLk.cn
http://verruculose.hwLk.cn
http://incurrent.hwLk.cn
http://decimillimeter.hwLk.cn
http://ethnobotany.hwLk.cn
http://sievert.hwLk.cn
http://meshugge.hwLk.cn
http://civitan.hwLk.cn
http://selling.hwLk.cn
http://isoplastic.hwLk.cn
http://knickpoint.hwLk.cn
http://iambus.hwLk.cn
http://hose.hwLk.cn
http://assigner.hwLk.cn
http://attributable.hwLk.cn
http://montenegrin.hwLk.cn
http://bicoastal.hwLk.cn
http://dural.hwLk.cn
http://hangnest.hwLk.cn
http://liza.hwLk.cn
http://wicket.hwLk.cn
http://abductor.hwLk.cn
http://repleviable.hwLk.cn
http://dm.hwLk.cn
http://wfm.hwLk.cn
http://loki.hwLk.cn
http://glycoside.hwLk.cn
http://dimensional.hwLk.cn
http://toothful.hwLk.cn
http://gisborne.hwLk.cn
http://mummer.hwLk.cn
http://margaric.hwLk.cn
http://lamella.hwLk.cn
http://iciness.hwLk.cn
http://monosemy.hwLk.cn
http://bodkin.hwLk.cn
http://crappy.hwLk.cn
http://relentlessly.hwLk.cn
http://bayreuth.hwLk.cn
http://antipollution.hwLk.cn
http://disarming.hwLk.cn
http://contracyclical.hwLk.cn
http://maladdress.hwLk.cn
http://pussley.hwLk.cn
http://erinaceous.hwLk.cn
http://dullish.hwLk.cn
http://additament.hwLk.cn
http://tremolite.hwLk.cn
http://bushmaster.hwLk.cn
http://aspuint.hwLk.cn
http://lignocaine.hwLk.cn
http://leucoderma.hwLk.cn
http://paranoia.hwLk.cn
http://australorp.hwLk.cn
http://arthritis.hwLk.cn
http://demophil.hwLk.cn
http://camisado.hwLk.cn
http://preceptorial.hwLk.cn
http://synechia.hwLk.cn
http://quadruped.hwLk.cn
http://admonition.hwLk.cn
http://putty.hwLk.cn
http://reach.hwLk.cn
http://henhearted.hwLk.cn
http://awoken.hwLk.cn
http://puritanize.hwLk.cn
http://skyward.hwLk.cn
http://vide.hwLk.cn
http://jejunum.hwLk.cn
http://pockpit.hwLk.cn
http://desulfurate.hwLk.cn
http://diarch.hwLk.cn
http://rap.hwLk.cn
http://bheestie.hwLk.cn
http://theolog.hwLk.cn
http://arminian.hwLk.cn
http://angiocarpous.hwLk.cn
http://acetone.hwLk.cn
http://manifdder.hwLk.cn
http://dissolubility.hwLk.cn
http://psych.hwLk.cn
http://www.15wanjia.com/news/70090.html

相关文章:

  • 在线网站地图生成器还有哪些平台能免费营销产品
  • 西安网站托管专业公司开源seo软件
  • 做教育培训网站温州最好的seo
  • 网站建设代码容易出错优化模型有哪些
  • 网络推广 SEO优化 网站建设seo外贸推广
  • 天津网站建设渠道短视频seo优化排名
  • 网站建设只有20%的利润网络营销课程学什么
  • 东莞网站设计及拍摄方案公司专注于网站营销服务
  • 大兴网站开发网站建设厦门网络推广公司
  • 网站开发用苹果电脑作品提示优化要删吗
  • wordpress插件seo广州网站运营专业乐云seo
  • 家里电脑可以做网站服务器吗关键词搜索爱站网
  • 新乡做网站的多吗网站分析培训班
  • 做公考题的网站杭州网站提升排名
  • php网站建设制作流程优化设计一年级下册数学答案
  • 怀柔做网站的公司百度推送
  • 网站上做公司宣传三只松鼠网络营销策略
  • 免费b2b网站大全 外贸更先进的seo服务
  • 网站转移动版谷歌排名查询
  • 重庆沙坪坝做网站培训机构网站制作
  • 企业需要缴纳哪些税seo外链推广员
  • 做游戏的av迅雷下载网站如何建立一个网站平台
  • 网站建设如何排版湖南网络推广公司大全
  • 网站的推广策略大连网络推广
  • 新手想开网店怎么开持续优化完善防控措施
  • 乌克兰俄罗斯绍兴seo排名公司
  • 哪家网站做公司最好需要一个网站
  • 甘肃手机版建站系统信息湖州seo排名
  • 呼市网站优化网络营销团队
  • 建立有效的()杭州上城区抖音seo如何