如何利用vuejs指令实现不同分辨率适配?下面web建站小编给大家详细介绍一下实现代码!
兼容不同分辨率适配代码
// 缩放指令 import Vue from "vue"; function transformScale(el, options) { const { target = "width", origin = "top left" } = options; Vue.nextTick(() => { // 获取显示区域高宽 const width = window.innerWidth; const height = window.innerHeight; el.style.transformOrigin = origin; if (target === "ratio") { const scaleX = width / CONF.width; const scaleY = height / CONF.height; el.style.transform = `scaleX(${scaleX}) scaleY(${scaleY})`; } else { let scaleProportion = 1; if (target === "width") { scaleProportion = width / CONF.width; } if (target === "height") { scaleProportion = height / CONF.height; } el.style.transform = `scale(${scaleProportion})`; } }); } function inserted(el, binding) { const options = binding.options || { passive: true }; const callback = () => transformScale(el, binding.value); window.addEventListener("resize", callback); callback(); el._onResize = { callback, options }; } function unbind(el) { if (!el._onResize) { return; } const { callback } = el._onResize; window.removeEventListener("resize", callback); delete el._onResize; } export const Scale = { inserted, unbind }; export default Scale;
上面是“如何利用vuejs指令实现不同分辨率适配”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_2680.html
workflows工作流
一杯咖啡蒸汽形成云ComfyUI工作流
树上挂着一只表情可爱的香蕉ComfyUI工作流二
汉堡里的一只毛茸茸的小猫ComfyUI工作流
1个可爱的白色短发女孩
懂王特朗普3d漫画ComfyUI工作流
池塘边的大熊猫ComfyUI工作流
1个黑发带着耳机项链的女孩ComfyUI工作流
stvmccrr风格的玫瑰花ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!