E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
documentElement
ElementPlus 修改主题色和暗黑模式切换
这个方案比较简单,适用于由用户根据颜色面板自行设定各种颜色主题;1.首先定义一个全局的方法exportconstsetVarStyle=(key:string,value:any,dom=document.
documentElement
八怪iii
·
2023-09-07 17:50
vue.js
javascript
elementui
前端框架
移动端自适应方案
绑定浏览器缩放和加载事件,动态修正跟字体大小vardocEl=document.
documentElement
,//当设备的方向变化(设备横向持或纵向持)此事件被触发。
圣地亚哥僵尸
·
2023-09-07 10:10
开发H5网页适配各种机型的办法
meta行:关于每个手机的像素都不一样,导致px在不同机型上面显示占比差异;可以将rem代替px来使用,根据手机屏幕的大小,使用rem转化为对应的手机屏幕占比的px,首先需要在页头增加:document.
documentElement
.style.fontSize
陈龙辉Break
·
2023-09-07 10:50
技术开发
H5
手机适配
html5
常见的JS兼容问题和解决方案
JS兼容问题1、事件对象的兼容e=ev||window.event2、滚动事件的兼容scrollTop=document.
documentElement
.scrollTop||document.body.scrollTop
zayyo
·
2023-09-06 14:29
javascript
开发语言
ecmascript
【前端demo】动态赋值CSS
效果预览:https://codepen.io/karshey/pen/BavLrwy参考:DynamicCSSVariables(codepen.io)漫谈document.
documentElement
karshey
·
2023-09-05 04:20
前端demo
前端
css
获取element-ui的Collapse折叠后高度
所以要监听动画结束,再获取折叠后的高度,再更新表格的最大高度即可exportdefault{data(){return{...}},mounted(){this.clientWidth=document.
documentElement
.clientWidth
前端程序媛Ying
·
2023-09-04 16:29
vue
web前端
JS
elementui
前端
javascript
Javascript、Jquery获取浏览器和屏幕各种高度宽度
Javascript:IE中:document.body.clientWidth==>BODY对象宽度document.body.clientHeight==>BODY对象高度document.
documentElement
.clientWidth
summer7310
·
2023-09-01 13:08
javascript
浏览器
通过js获取css变量
getComputedStyle(document.
documentElement
).getPropertyValue('--main-color').trim()//#000
Gino_Li
·
2023-08-31 23:21
前端vue实现点击实现F11全屏以及全屏后监听不到键盘事件解决方法
起因用户提出的一个小需求要在右上角加上一个点击全屏的按钮解决方法通过度娘我查到了全屏方法document.
documentElement
.webkitRequestFullscreen(),跟取消全屏方法
关忆北_
·
2023-08-31 13:27
经验记载
前端
vue.js
javascript
微信网页,浮层内允许滚动,浮层下锁定滚动
$on('pageLock',()=>{document.
documentElement
.style.
Armin0202
·
2023-08-31 09:07
H5追悼日全局置灰
方法一CSS操控filter:grayscale(100%)方法二通过dom操作document.
documentElement
.style.filter='grayscale(100%)'注意:使用方法一会出现部分布局被打乱的情况
付进不是附近
·
2023-08-30 06:36
前端
vue.js
css
vue 点击回到顶部
代码:顶部showbtn(){constscrollTop=window.pageYOffset||document.
documentElement
.scrollTop||document.body.scrollTopthis.scrollTop
YangHuan3
·
2023-08-29 22:59
vue
vue.js
javascript
前端
滚动条与事件
获得div中滚动条的距离/*滚动条滚动事件*//*document.onscroll=function(){console.log(document.
documentElement
.scrollTop)
冲锋敢死曾小贤
·
2023-08-29 17:22
C++ Qt解析XML
C++Qt解析XML文件1.待读取的XML文件数据2.源代码3.解析QDomDocument类setContent成员函数
documentElement
成员函数QDomElement类firstChild
「已注销」
·
2023-08-26 05:07
C++
xml
c++
qt
canvas开发项目总结
使用css设置宽高会让canvas变形letgameCanvas=document.getElementById('gameCanvas')this.ctxWidth=document.
documentElement
.clientWidththis.ctxHeight
muroujue
·
2023-08-25 13:32
在百度地图中添加自定义全屏控件
百度地图中添加全屏控件前置知识:进入整个页面的全屏模式:document.
documentElement
.requestFullscreen()进入特定元素的全屏模式:document.getElementById
yqdidy
·
2023-08-25 09:47
前端
document文档节点
则返回null示例:image.pngdocument.
documentElement
属性返回
木子木同
·
2023-08-24 19:24
js函数防抖和函数节流及其他使用场景
window.onscroll=function(){//console.log(document.body.scrollTop);观察滑轮距浏览器顶部的高度//console.log(document.
documentElement
.scrollT
野原新之助(猿究院)
·
2023-08-24 17:43
javascript
开发语言
ecmascript
js实现 scorll 滚动条触底加载 ---及滚动条左右滑动触底事件触发
scorll滚动条触底加载//获取domletelement=document.
documentElement
//浏览器滚动滚动的高度letscrollTop=element.scrollTop||document.body.scrollTop
Eden_li
·
2023-08-24 10:13
javascript
前端
开发语言
页面自适应字体大小,根据屏幕宽度适应font-size文字大小
1.HTML中加入以下JS代码:vardocEl=document.
documentElement
;functionsetRemUnit(){varrem=docEl.clientWidth/19.2;
北斗星的爱886
·
2023-08-22 06:52
JavaScript
前端
html
自适应
屏幕适配
移动端适配
根据窗口大小动态计算字体大小functioncomputed(){letHTML=document.
documentElement
,deviceW=HTML.clientWidth,designW=750
田成力
·
2023-08-22 03:25
淘宝适配js
;(function(win,lib){vardoc=win.document;vardocEl=doc.
documentElement
;varmetaEl=doc.querySelector('meta
呼兰呦
·
2023-08-22 01:24
(Python)安卓里的string.xml一键提取为表格
importxml.dom.minidomimportcsvdefmain():#打开xml文档dom=xml.dom.minidom.parse('D:\\strings.xml')#获取根元素root=dom.
documentElement
西厌西厌
·
2023-08-20 02:18
vue中window.onresize无效的解决方案
本来我以前都是这样写的window.onresize=()=>{return()=>{this.windowWidth=((document.
documentElement
.clientWidth-40
还在努力的乌贼
·
2023-08-19 14:38
vue实现全屏、退出全屏方法
全屏fullscreen:false//全屏、退出全屏切换toggleFullscreen(){letelement=document.
documentElement
;if(this.fullscree
船长在船上
·
2023-08-19 10:21
vue.js
javascript
前端
js实现移动端图片滑块验证功能
2、实现代码如下:验证码滑块(function(doc,win){vardocEl=doc.
documentElement
,resizeEvt='orientationchange'inwindow?'
我爱画页面
·
2023-08-19 05:11
实现手机淘宝轮播图片放大查看
我主要用了swiper.就直接把代码放上了.记得引入swiper.css和swiper.js.我使用的是zepto.js,其实跟jq没什么区别,引入哪一个都可以Document//字体document.
documentElement
.style.font
cs大个子女生
·
2023-08-18 23:36
拉下加载更多
componentDidMount(){//获取列表数据this.getListData();//下拉刷新letall=document.
documentElement
.scrollHeight||document.body.scrollHeight
四哥_d0ad
·
2023-08-18 22:46
去掉移动端alert和confirm弹出框携带url链接
document.createElement("IFRAME");iframe.style.display="none";iframe.setAttribute("src",'data:text/plain,');document.
documentElement
呼兰呦
·
2023-08-18 22:46
vue+elementPlus table自动滚动
exportdefault{data(){return{list:[],time:''}},computed:{tableHeight(){leth=window.innerHeight||document.
documentElement
.clientHeight
·
2023-08-18 14:13
JS实现右侧悬浮框随着页面的上下轮动而移动
bottom:40%;}window.onscroll=function(){varoDiv=document.getElementById('div');varscrollTop=document.
documentElement
.scrol
YH丶浩
·
2023-08-18 03:14
JavaScript
javascript
vue实时监听屏幕的宽度和移除监听
("事件名",()=>{});:添加监听事件;window.removeEventListener("事件名",()=>{});:移出监听事件;第一步:在data里定义宽度cl_w:document.
documentElement
.clientWidth
前端小凯
·
2023-08-18 01:52
vue.js
javascript
前端
intersectionObserver API 介绍及实践
在前端开发工作中,常常需要判断某个元素是否进入了“视口”,一般的做法是监听滚动容器的滚动事件,调用目标元素位置方法,一般有两种方式:el.offesetTop-document.
documentElement
.scrollTop
zx_lau
·
2023-08-17 05:30
vue中自适应rem的设置及vant组件库px自动修改为相对大小的方法两则(postcss-pxtorem和postcss-px-to-viewport)
rem.jsfunctionsetRem(){//750px为设计稿视口宽度字体大小默认18px;constscreenWidth=750constscale=screenWidth/18consthtmlWidth=document.
documentElement
.clientWidth
weixin_41990749
·
2023-08-16 07:47
个人笔记
vue.js
postcss
前端
移动端布局之postcss-px-to-viewport(兼容vant)
post-css-to-viewport痛点在哪里在之前有一种流行已久的移动端适配方案,那就是rem,我想下面这两句代码,有不少老移动端都不会陌生:constdeviceWidth=document.
documentElement
.client
康康不是只喵
·
2023-08-16 07:16
html/css
前端
iOS禁用webView长按弹出menu
在webView加载完成的代理方法webViewDidFinishLoad里面添加[webViewstringByEvaluatingJavaScriptFromString:@"document.
documentElement
.style.webkitUserSelect
我的名字就这么长
·
2023-08-15 14:03
获取屏幕分辨率
varscreenWidth=window.innerWidth||document.
documentElement
.clientWidth||document.body.clientWidth;varscreenHeight
想一个不重名的名字
·
2023-08-15 04:27
前端
javascript
浏览器最大化时(页面DIV框架)左右排列,非最大化时上下排列要求
functionresizeHandle(){vardoc=window.parent.window.document,clientWidth=(doc.
documentElement
.clientWidth
子蛟
·
2023-08-15 02:08
前端
javascript
html
浏览器全屏 js
name:'',//Pascal命名data(){return{fullscreen:false,};},methods:{handleFullScreen(){letelement=document.
documentElement
魔仙堡杠把子灬
·
2023-08-14 21:43
更新url参数以及根据参数来获取资源的设定(Detecting url changes and updating content in component)
中的内容routing检测和content更新.pngpaginationcomponentsetPage(clickedPage){//backtothetopofthewindowdocument.
documentElement
.scrol
妙啊啦
·
2023-08-14 17:00
nuxt.js使用rem自适应所有屏幕(PC端与手机端)
function(){functionsetHtmlFontSize(){varwhdef=100/1920;//表示1920的设计图,使用100PX的默认值varbodyWidth=document.
documentElement
.getBoundingClientRect
性野喜悲
·
2023-08-12 10:59
vue
经验分享
nuxt.js
javascript
开发语言
前端
Python爬虫——selenium_交互
button.click()输入:inputs.send_keys()后退操作:browser.back()前进操作:browser.forword()模拟js滚动:browser.js_bottom='document.
documentElement
.scrollTop
错过人间飞鸿
·
2023-08-11 10:23
Python爬虫
python
爬虫
selenium
JS中三种实现懒加载的方法!
varimageContainer=document.getElementById('image-container');varscrollTop=window.pageYOffset||document.
documentElement
破裤兜
·
2023-08-10 14:15
Javascript
javascript
开发语言
ecmascript
vue中全屏screenfull使用过程中报错总结
vue中全屏目前实现大体有两种:一种时浏览器自带的document.
documentElement
.webkitRequestFullScreen();两外一种使用screenfull插件报错一,页面使用了
圆周率v1.1
·
2023-08-10 10:48
vue.js
前端
javascript
asp生成带参数的二维码并合成推广海报图片,asp合并合成推广海报图片asp代码
合并生成一张推广海报来,可把我愁坏了,经过一个晚上的努力,成功了,下面把这个:asp生成带参数的二维码并合成推广海报,asp合并合成推广海报asp代码,发下面来,给有需要的朋友用:")xml.
documentElement
.setAttribute"xmlns
码农18611436777
·
2023-08-09 10:06
asp生成图片
asp生成二维码
生成海报
生成海报图片
浏览器渲染页面的大致过程
在dom树中,每个html标签都有一个对应的节点,每个文本也有对应的文本节点,根节点就是
documentElement
,对应的是html节点。当遇到
路人丁0417
·
2023-08-06 04:36
vue页面大小跟随屏幕尺寸自适应
mounted(){//自适应窗口if(window.screen.width>1200){functionbodyScale(){letdeviceWidth=document.
documentElement
.clientWidth
奚大野...
·
2023-08-05 07:44
vue.js
javascript
前端
吸顶效果
functionceiling(obj){varot=obj.offsetTop;document.onscroll=function(){varst=document.body.scrollTop||document.
documentElement
.scrollTop
中建云筑股份有限公司
·
2023-08-05 04:57
移动端网页div下滑消失、上滑出现(附带闪烁效果)
//距离顶部的距离consttop=ref(0)//图标向上还是向下滑动constIconShow=ref(true)//滑动监听,注意如果只有document.
documentElement
.scrollTop
静止呀
·
2023-08-04 23:05
Vue
vue.js
[selenium]实现鼠标滚轮事件
第一种:js="varq=document.
documentElement
.scrollTop=10000"driver.execute_script(js)在w3c中是这样定义的scrollTop()
Franckisses
·
2023-08-04 16:41
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他