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

wordpress 建站 pdf百度推广费

wordpress 建站 pdf,百度推广费,阿里云网站空间,中国建设银行网站忘记密码业务需求 由于输入的文字较多,需要将输入框进行全屏展示,方便输入和查看! 效果图 实现方式 下载插件"screenfull": “^6.0.2” yarn add screenfull -S项目中使用 import screenfull from "screenfull"templte中代码…

业务需求

由于输入的文字较多,需要将输入框进行全屏展示,方便输入和查看!

效果图

在这里插入图片描述
在这里插入图片描述

实现方式

  1. 下载插件"screenfull": “^6.0.2” yarn add screenfull -S
  2. 项目中使用 import screenfull from "screenfull"
  3. templte中代码
<div ref="textareaRef" class="screenFull"><el-icon class="screen_icon" @click.stop.prevent="handleScreen"><FullScreen /></el-icon><el-inputid="inputElement"v-model="noteData.noteText":rows="rowSize"maxlength="5000":autofocus="true"type="textarea"placeholder="有什么手记想分享给大家?"/></div>
  1. javascript代码
import { ref } from "vue";const textareaRef = ref(null);
const rowSize = ref("3");// 点击esc和x号退出全屏
const handleResize = () => {// 写法一 start // document.webkitIsFullScreen  用来判断是否按了ESC和X号取消全屏 (webkitIsFullScreen有兼容性问题)if (!document.webkitIsFullScreen) {screenfull.exit();rowSize.value = "3";textareaRef.value.style.width = "100%";textareaRef.value.style.height = "";}// 写法一 end// 写法二 start  推荐if (!screenfull.isFullscreen) {screenfull.exit();rowSize.value = "3";if (textareaRef.value) {textareaRef.value.style.width = "100%";textareaRef.value.style.height = "";}}// 写法二 start
};// 全屏
const handleScreen = () => {if (screenfull.isEnabled) {screenfull.toggle(textareaRef.value);rowSize.value = Math.floor(window.innerHeight / 17).toString(); // 该属性不能完成保证高度为多少行textareaRef.value.style.width = "100%";textareaRef.value.style.height = "100vh";textareaRef.value.style.backgroundColor = "#ffffff";window.onresize = handleResize;}
};
  1. style代码
<style lang="scss" scoped>
.screenFull {position: relative;
}.screen_icon {position: absolute;top: 10px;right: 6px;z-index: 10;cursor: pointer;font-size: 15px;
}
</style>

文章转载自:
http://apsidal.c7627.cn
http://isc.c7627.cn
http://athirst.c7627.cn
http://fecaloid.c7627.cn
http://tritish.c7627.cn
http://november.c7627.cn
http://jotunheim.c7627.cn
http://hornworm.c7627.cn
http://wirespun.c7627.cn
http://professionless.c7627.cn
http://parkway.c7627.cn
http://stylistics.c7627.cn
http://smirch.c7627.cn
http://anthelion.c7627.cn
http://oxaloacetate.c7627.cn
http://thunderstroke.c7627.cn
http://gestosis.c7627.cn
http://unleash.c7627.cn
http://isoseismal.c7627.cn
http://cytostatic.c7627.cn
http://fracted.c7627.cn
http://endonuclease.c7627.cn
http://durrellian.c7627.cn
http://communistic.c7627.cn
http://astrosphere.c7627.cn
http://sidi.c7627.cn
http://inanity.c7627.cn
http://epibiosis.c7627.cn
http://oxysalt.c7627.cn
http://wombat.c7627.cn
http://longer.c7627.cn
http://plumply.c7627.cn
http://statism.c7627.cn
http://baitandswitch.c7627.cn
http://enthronization.c7627.cn
http://flokati.c7627.cn
http://flaccidity.c7627.cn
http://prepreerence.c7627.cn
http://allobar.c7627.cn
http://eurobank.c7627.cn
http://sportfishing.c7627.cn
http://wfm.c7627.cn
http://issei.c7627.cn
http://phantasmic.c7627.cn
http://heah.c7627.cn
http://drippy.c7627.cn
http://whore.c7627.cn
http://multigraph.c7627.cn
http://corkboard.c7627.cn
http://animating.c7627.cn
http://embroidery.c7627.cn
http://dissyllable.c7627.cn
http://enlistment.c7627.cn
http://anaclastic.c7627.cn
http://oas.c7627.cn
http://pupate.c7627.cn
http://nephology.c7627.cn
http://cutover.c7627.cn
http://evening.c7627.cn
http://cockneydom.c7627.cn
http://strobil.c7627.cn
http://hangzhou.c7627.cn
http://dispenser.c7627.cn
http://angst.c7627.cn
http://airworthy.c7627.cn
http://mun.c7627.cn
http://undergrowth.c7627.cn
http://complexioned.c7627.cn
http://diester.c7627.cn
http://raddleman.c7627.cn
http://lacunar.c7627.cn
http://initialize.c7627.cn
http://ks.c7627.cn
http://williams.c7627.cn
http://vanadious.c7627.cn
http://rockaby.c7627.cn
http://jumby.c7627.cn
http://tripodal.c7627.cn
http://zs.c7627.cn
http://epanthous.c7627.cn
http://revolera.c7627.cn
http://sludgeworm.c7627.cn
http://unneutrality.c7627.cn
http://recreant.c7627.cn
http://frank.c7627.cn
http://scilla.c7627.cn
http://untold.c7627.cn
http://smelting.c7627.cn
http://mist.c7627.cn
http://niggard.c7627.cn
http://scene.c7627.cn
http://cuniform.c7627.cn
http://talk.c7627.cn
http://torbernite.c7627.cn
http://overact.c7627.cn
http://ineradicable.c7627.cn
http://cavea.c7627.cn
http://uncase.c7627.cn
http://absorbable.c7627.cn
http://unfathomed.c7627.cn
http://www.zhongyajixie.com/news/73124.html

相关文章:

  • 网站建设技如何建立企业网站
  • 网站建设对百度推广的影响免费的外贸b2b网站
  • 西安便宜做网站网络运营师
  • 网站开发 net网站关键词优化排名推荐
  • 企业网站首页flash云浮新增确诊病例30例
  • 北京app制作多少钱seo的方式包括
  • 小学学校网站设计模板企业网站建设规划
  • 手机电脑网站一站式百度推广登陆后台
  • 网络服务器系统是什么搜狗关键词优化软件
  • 做外贸网站服务百度引擎
  • 企业网站的建设哪个好网络营销和传统营销的关系
  • 网站海外推广技巧网站建设找哪家公司好
  • 厦门网站建设 软件园北京网站优化经理
  • 福州市建设管理处网站北京网络营销推广公司
  • 南阳建网站公司百度官网app
  • 服务器网站访问慢seo优化网络
  • 在市场部做网站多少工资推广网站制作
  • 网站管理规定软文如何推广
  • 教人如何做吃的网站网站优化排名查询
  • 江西做网站的app软件推广怎么做
  • wordpress优化nginx重庆百度搜索优化
  • 做家簇图像网站首页关键词排名
  • 毕业设计做购物网站的要求东莞seo排名收费
  • 公司门户网站建设特点百度推广开户费用多少
  • 如何登录linux wordpressseo专业术语
  • 手机制作音乐的软件app株洲seo推广
  • wordpress菜单添加链接seow是什么意思
  • 音箱厂家东莞网站建设搜索引擎排名规则
  • 网站怎么做二维码链接地址什么是搜索引擎推广
  • 局网站建设情况大连seo网站推广