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

中国建设银行绑定网站有网络网站打不开怎么回事啊

中国建设银行绑定网站,有网络网站打不开怎么回事啊,英山做网站多少钱,做网站的步骤视频使用大屏展示的时候有很多种场景#xff0c;众多场景都是为了实现大屏自适应。 大屏#xff0c;顾名思义#xff0c;就是放在一个固定的屏幕上看的#xff0c;即使你不做自适应#xff0c;放在一个固定的屏幕上看也没啥问题#xff0c;但是很多做大屏的是为了在PC端看众多场景都是为了实现大屏自适应。 大屏顾名思义就是放在一个固定的屏幕上看的即使你不做自适应放在一个固定的屏幕上看也没啥问题但是很多做大屏的是为了在PC端看PC端屏幕又是参差不齐的所以需要做自适应。 方案一 使用transform的大小缩放来实现我们先写一个缩放容器AutoScalContainer.vue代码如下 templatediv classauto-scal-containerrefAutoScalContainerRefdiv refDomRef classauto-scal-container-innerslot/slot/div/div /templatescript /** * 自动缩放容器* 使用transform进行缩放* */ import { defineComponent,ref,getCurrentInstance,reactive,toRef, computed,onMounted,onActivated,watch,onBeforeUnmount, } from vue;export default defineComponent({props:{width:{type:Number,default:1920,},height:{type:Number,default:1080,},/** 内部容器的宽高比例 */ratio:{type:Number,default:1920 / 1080,},/** * fit原理同img的object-fit* contain : 被替换的内容将被缩放以在填充元素的内容框时保持其宽高比。* cover : 被替换的内容在保持其宽高比的同时填充元素的整个内容框。如果对象的宽高比与内容框不相匹配该对象将被剪裁以适应内容框。* */fit:{type:String,default:contain,},},emits:[onResizeScreen],setup(props,{emit}){const DomRef ref(null); //组件实例const AutoScalContainerRef ref(null); //组件实例const dataContainer reactive({height:toRef(props,height),width:toRef(props,width),ratio:toRef(props,ratio),fit:toRef(props,fit),});/** 是否是文档上 */function isActive(){if(!DomRef.value) return false;return DomRef.value.getRootNode() document;}/** 自动缩放 */function autoResizeScreen(){if(!AutoScalContainerRef.value) return;if(!DomRef.value) return;if(!isActive) return;let rect AutoScalContainerRef.value.getBoundingClientRect();let clientWidth rect.width;let clientHeight rect.height;var width dataContainer.width;var height dataContainer.height;let left 0;let top 0;let scale 0;/** 使用外部传入的比例或者传入的宽高计算比例 */let ratio dataContainer.ratio || (width / height);// 获取比例 可视化区域的宽高比与 屏幕的宽高比 来进行对应屏幕的缩放if(dataContainer.fit contain){if ((clientWidth / clientHeight) ratio) {scale clientHeight / height;top 0;left (clientWidth - width * scale) / 2;} else {scale clientWidth / width;left 0;top (clientHeight - height * scale) / 2;}}if(dataContainer.fit cover){if ((clientWidth / clientHeight) ratio) {scale clientWidth / width;} else {scale clientHeight / height;}}// 防止组件销毁后还执行设置状态sObject.assign(DomRef.value.style, {transform: scale(${scale}),left: ${left}px,top: ${top}px,});/** 向外部通知已经计算缩放 */emit(onResizeScreen);}/** 防抖 */let timer_1;function fnContainer(){clearTimeout(timer_1);// timer_1 setTimeout((){autoResizeScreen();// },16);}let timer setInterval((){fnContainer();},300);onMounted(() {autoResizeScreen();});window.addEventListener(resize, fnContainer);onBeforeUnmount(() {window.removeEventListener(resize, fnContainer);window.clearInterval(timer);});return {dataContainer,DomRef,AutoScalContainerRef,};}, }); /scriptstyle langscss scoped .auto-scal-container {width: 100%;height: 100%;position: relative;overflow: auto;/** 隐藏滚动条 */-ms-overflow-style: none;scrollbar-width: none;::-webkit-scrollbar {display: none;}.auto-scal-container-inner {overflow: hidden;transform-origin: left top;z-index: 999;width: max-content;height: max-content;position: absolute;top: 0;left: 0;} } /style使用方式 script /** * 大屏主页面* 采用缩放的形式进行适配搭配rem的话很方便实用* */ import { defineComponent,ref,getCurrentInstance,reactive,toRef, computed,onMounted,onActivated,watch } from vue; import AutoScalContainer from /components/AutoScalContainer.vue; import ViewHead from ./components/ViewHead.vue; import img_1 from ./assets/bg.png; import img_2 from ./assets/1-1-bg.png; import Box_1 from ./components/Box_1.vue; import Box_2 from ./components/Box_2.vue; import Box_3 from ./components/Box_3.vue; import Box_4 from ./components/Box_4.vue; import Box_5 from ./components/Box_5.vue; import Box_6 from ./components/Box_6.vue; import { useRoute } from vue-router;export default defineComponent({name:BigScreenView,components: {AutoScalContainer,ViewHead,Box_1,Box_2,Box_3,Box_4,Box_5,Box_6,},setup(){let route useRoute();const dataContainer reactive({loading:false,img:{img_1,img_2,},fit:contain,}); watch(route,(){let queryParams route.query || {};let fitMap {cover:cover,contain:contain,};dataContainer.fit fitMap[queryParams.fit] || contain;},{immediate:true,});return {dataContainer,};}, }); /scripttemplatediv classbig-screen-viewAutoScalContainer:height1080:width1920:fitdataContainer.fitdiv classbig-screen-view-container:style{--bg-img-1:url(${dataContainer.img.img_1}),--bg-img-2:url(${dataContainer.img.img_2}),} div classheadViewHeadtitle数据可视化大屏展示/ViewHead/divdiv classcontentdiv classtopBox_1/Box_1 /divdiv classcontentdiv classleftdiv classboxBox_2/Box_2 /divdiv classboxBox_3/Box_3 /div/divdiv classrightdiv classboxBox_4/Box_4 /divdiv classboxBox_5/Box_5 /div/div/div/divdiv classcentre-boxdiv classv-height/divdiv classcontainerBox_6/Box_6 /div/div/div/AutoScalContainer/div /templatestyle langscss scoped .big-screen-view{width: 100vw;height: 100vh;overflow: hidden;background-color: #031045c7;.big-screen-view-container{width: 1920px;height: 1080px;background-color: rgb(169, 169, 169);display: flex;flex-direction: column;background-image: var(--bg-img-1);background-repeat: no-repeat;background-size: 100% 100%;background-position: center;position: relative;.head{height: 91px;position: relative;z-index: 2;}.content{display: flex;flex-direction: column;flex: 1 1 0;width: 100%;height: 0;position: relative;z-index: 2;pointer-events: none;.top{width: 100%;height: 199px;pointer-events: initial;}.content{display: flex;flex-direction: row;justify-content: space-between;flex: 1 1 0;width: 100%;height: 0;padding: 0 15px 15px 15px;box-sizing: border-box;.left,.right{display: flex;flex-direction: column;.box{width: 100%;flex: 1 1 0;height: 0;background-image: var(--bg-img-2);background-repeat: no-repeat;background-size: 100% 100%;background-position: center;margin: 0 0 15px 0;pointer-events: initial;:last-child{margin: 0;}}}.left{height: 100%;width: 550px;}.right{height: 100%;width: 550px;}}}.centre-box{position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 1;display: flex;flex-direction: column;.v-height{width: 100%;height: 270px;}.container{flex: 1 1 0;height: 0;width: 100%;}}} } /style好了一个用transfor缩放的例子就完成了使用rem的例子以后为大家讲解 源码 DEMO
http://www.zqtcl.cn/news/357325/

相关文章:

  • 南京越城建设集团网站网站空间续费多少钱
  • 深圳nft网站开发公司如何制作微信公众号里的小程序
  • 做网站美工要学什么聊城网站建设电话
  • 南通个人网站建设快手秒刷自助网站
  • html5 做网站网站开发找工作
  • 聚成网站建设艺术公司网站定制中心
  • 阿里云上可以做网站吗十六局集团门户网
  • 门户网站建设询价函有哪些网站可以做设计挣钱
  • 如何建立自己网站奔奔网站建设
  • 自由做图网站做网站所用的工具
  • 广西南宁做网站专业网站建设案例
  • 视屏网站的审核是怎么做的群辉 搭建wordpress
  • 嘉兴网站快速排名优化衡阳网站建设制作
  • 建设公共资源交易中心网站成都APP,微网站开发
  • dede网站地图修改厦门百度seo
  • 可以做行程的网站网站详情怎么做的
  • 网站建设心得8000字营销型网站建设的注意事项
  • 织梦购物网站整站源码哈尔滨网站建设技术托管
  • 做推广的网站微信号企业免费网站制作
  • 做旅游网站的引言上海公司网站建设哪家好
  • 找项目去哪个网站网站建设一条龙全包
  • 网站 数据库 模板网站系统建设合作合同范本
  • 网站空间租赁费用企业网站建设需要多少钱知乎
  • 免费建网站哪个模板多浅谈学校网站建设
  • 精致的个人网站手机网站建设基本流程图
  • 优秀网站网页设计图片主机屋做网站视频
  • 安徽网站建设电话编程一个最简单游戏代码
  • 西宁圆井模板我自己做的网站在线平面设计图
  • 浦口区网站建设技术指导做软件需要网站吗
  • 丹东有做公司网站的吗搜索引擎 wordpress