• 037:vue项目监听页面变化,动态设置iframe元素高度


    在这里插入图片描述

    第037个

    查看专栏目录: VUE ------ element UI


    专栏目标

    在vue和element UI联合技术栈的操控下,本专栏提供行之有效的源代码示例和信息点介绍,做到灵活运用。

    (1)提供vue2的一些基本操作:安装、引用,模板使用,computed,watch,生命周期(beforeCreate,created,beforeMount,mounted, beforeUpdate,updated, beforeDestroy,destroyed,activated,deactivated,errorCaptured,components,)、 $root , $parent , $children , $slots , $refs , props, $emit , eventbus ,provide / inject, Vue.observable, $listeners, $attrs, $nextTick , v-for, v-if, v-else,v-else-if,v-on,v-pre,v-cloak,v-once,v-model, v-html, v-text, keep-alive,slot-scope, filters, v-bind,.stop, .native, directives,mixin,render,国际化,Vue Router等

    (2)提供element UI的经典操作:安装,引用,国际化,el-row,el-col,el-button,el-link,el-radio,el-checkbox ,el-input,el-select, el-cascader, el-input-number, el-switch,el-slider, el-time-picker, el-date-picker, el-upload, el-rate, el-color-picker, el-transfer, el-form, el-table, el-tree, el-pagination,el-badge,el-avatar,el-skeleton, el-empty, el-descriptions, el-result, el-statistic, el-alert, v-loading, $message, $alert, $prompt, $confirm , $notify, el-breadcrumb, el-page-header,el-tabs ,el-dropdown,el-steps,el-dialog, el-tooltip, el-popover, el-popconfirm, el-card, el-carousel, el-collapse, el-timeline, el-divider, el-calendar, el-image, el-backtop,v-infinite-scroll, el-drawer等

    需求背景

    在vue项目开发中,有时候需要用到iframe。而iframe要正常显示,需要设定width和height。这里的示例是通过watch监听页面变化,可以动态的设置iframe元素高度。

    示例效果

    在这里插入图片描述

    示例源代码(共57行)

    /*
    * @Author: 大剑师兰特(xiaozhuanlan),还是大剑师兰特(CSDN)
    * @此源代码版权归大剑师兰特所有,可供学习或商业项目中借鉴,未经授权,不得重复地发表到博客、论坛,问答,git等公共空间或网站中。
    * @Email: 2909222303@qq.com
    * @weixin: gis-dajianshi
    * @First published in CSDN
    * @First published time: 2022-09-21
    */
    <template>
    	<div class="container">
    		<iframe width="100%" :height="fullHeight" :src="urlSRC" ></iframe> 
    	</div>
    </template>
    <script>
    
    	export default {
    		data() {
    			return {
                 urlSRC:'http://www.cuclife.com/',
    			 fullHeight: document.documentElement.clientHeight , 
    			 timer: true 
    			}
    		},
    		methods: {
    
    		},
    		mounted(){
    			window.onresize = () => { 
    			      return (() => { 
    			        window.fullHeight = document.documentElement.clientHeight; 
    			        this.fullHeight = window.fullHeight ; 
    			      })(); 
    			    }; 
    		},
    		watch: { 
    		    fullHeight(val) { 
    				console.log(val)
    		      if (!this.timer) {//防止多次触发监听页面卡顿 
    		        this.fullHeight = val; 
    				
    		        this.timer = true; 
    		        let that = this; 
    		        setTimeout(function() { 
    		          that.timer = false; 
    		        }, 400); 
    		      } 
    		    } 
    		  }, 
    	}
    </script>
    <style scoped>
    	.container {
    		width: 100%;
    		height: 100vh;
    	}
    
    </style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
  • 相关阅读:
    Spring Boot 中如何解决跨域问题、Spring Cloud 5大组件、微服务的优缺点是什么?
    paddleocr识别模型训练记录
    介绍 Preact Signals
    金仓数据库KingbaseES客户端编程接口指南-ado.net(3. KingbaseES 驱动在 .NET 平台的配置)
    基于Java web的医院分诊管理系统文档
    (Note)在Excel中选中某一行至最后一行的快捷键操作
    GO-日志分析
    骨传导麦克风+耳塞模式,打开飞利浦A7607的“隐藏功能”
    nvm安装详细教程(卸载旧的nodejs,安装nvm、node、npm、cnpm、yarn及环境变量配置)
    rpc简介
  • 原文地址:https://blog.csdn.net/cuclife/article/details/133137453