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
关于手机屏幕分辨率与手机浏览器分辨率的差别
通常这段代码可以测试屏幕分辨率与浏览器分辨率:document.write("浏览器分辨率是"+document.
documentElement
.clientWidth+""+document.documentElem
weixin_33737134
·
2020-09-16 01:17
移动开发
VUE监听页面滚动到底部
methods:{Scrollbottom(){letscrollTop=document.
documentElement
.scrollTop||document.body.scrollTop;letclientHeight
换日线°
·
2020-09-16 01:35
VUE
VUE
页面滚动到底部
监听滚动
【JavaScript】------- JavaScript 返回顶部 js实例代码
如何点击顶部按钮返回到顶部呢看实例代码:/*获取滚动条实现返回顶部滑动效果*/$("#footer").addEventListener('click',goTop);functiongoTop(){varpp=document.
documentElement
皮皮冰要做大神
·
2020-09-16 01:22
JavaScript
rem布局代码
(function(){varhtml=document.
documentElement
;varhWidth=html.getBoundingClientRect().width;html.style.fontSize
Tokki_
·
2020-09-16 01:34
前端
html
js判断页面是否加载完成
js判断页面是否加载完成下面的图片自己可以转化成base64编码的形式,这里因字数太多我改掉了…//获取浏览器页面可见高度和宽度var_PageHeight=document.
documentElement
.clientHeight
Diven心海
·
2020-09-16 00:29
web功能集
javascript
python selenium 滚动条处理、页面拖动
1.滚动条拉到最底:js="varq=document.
documentElement
.scrollTop=10000"driver.execute_script(js)2.滚动条拉到最底:js="varq
春天的菠菜
·
2020-09-15 19:15
selenium
python-selenium,关于页面滑动
第一种:#滑到底部js="varq=document.
documentElement
.scrollTop=100000"driver.execut_script(js)目前在firefox,chrome
chennigu5967
·
2020-09-15 19:18
python
# HTML页面动态设置置顶
HTML页面动态设置置顶document.body.scrollTop=document.
documentElement
.scrollTop=0;
Ka、
·
2020-09-15 18:29
div固定悬浮(左侧、右侧、任意相对位置)
e宝账--帮助中心functionscrollx(p){vard=document,dd=d.
documentElement
,db=d.body,w=window,o=d.getElementById(
yaoyanzhu
·
2020-09-15 15:45
JavaScript
移动端自适应问题
(function(doc,win){vardocEl=doc.
documentElement
,resizeEvt='orientationchange'inwindow?'
shl999
·
2020-09-15 11:54
html
css
javascript
rem手机端适配方案
1.页面加入如下代码(function(doc,win){vardocEl=doc.
documentElement
,resizeEvt='orientationchange'inwindow?'
米-老-头
·
2020-09-15 11:23
手机端自适应方案
javascript 作品
JavaScript获取浏览器高度和宽度值document.body.clientWidth==>BODY对象宽度document.body.clientHeight==>BODY对象高度document.
documentElement
.clientWidth
Tsk720
·
2020-09-15 10:51
javascript
react next.js引用第三方js方法
//在线字体引入为列://官方提供js代码如下:(function(d){varconfig={kitId:'ewt6vfg',scriptTimeout:3000,async:true},h=d.
documentElement
qq_41211900
·
2020-09-15 09:33
next.js
react-next
vue踩坑
只需在组件mounted的时候,加上如下代码:document.
documentElement
.scrollTop=0;document.body.scrollTop=0;这样组件跳转的时候,就会自动回到页头位置
weixin_30702413
·
2020-09-14 23:39
javascript
HTML5 实现全屏效果
HTML5实现全屏效果点击进入全屏和点击退出全屏方法://进入全屏functionrequestFullScreen(){varde=document.
documentElement
;if(de.requestFullscreen
ajXue
·
2020-09-14 16:56
前端学习
Selenium 处理滚动条操作
而要操作的元素在当前屏幕可见区域之外,则需要通过操作滚动条滚动到该元素,下面介绍两种方法:需要用selenium中的execute_script方法去执行js脚本.1、设置滚动条位置:execute_script(“document.
documentElement
.scrollTop
理想3旬
·
2020-09-14 16:21
web自动化
selenium
定位
DOM css的一些操作
1、查看滚动条的距离:ie9以上及其它浏览器window.pageXOffset/pageYOffsetie8以及ie8以下document.body.scrollLeft/topdocument.
documentElement
.scrollLeftutedStyle
大树之殇
·
2020-09-14 15:33
JS
css3
compatMode
d.
documentElement
:db;//根元素仔细找了下相关资料,收集整理如下:IE对盒模型的渲染有两种模式,分别是
daoyuly
·
2020-09-14 13:46
知识积累
完全搞定iframe(框架)里的滚动条
document.getElementById("aa").document.body.scrollTop="500";滚动条始终在最下端:window.onload=function(){document.
documentElement
.scrollTop
Ms.Yang
·
2020-09-14 13:59
html
html5 实现的全屏模式下的问题与解决
1.实现->点击button实现全屏模式//进入全屏enterFullScreen(){letde:any;de=document.
documentElement
;if(de.requestFullscreen
蒙奇·D·伊丽莎白
·
2020-09-14 13:15
web
CSS 最佳实践 + 套路(四) -- 移动端适配
概述手机上显示网页是将整个网页缩小,模拟页面宽度980px,可以使用document.
documentElement
.clientWidth来获取到页面宽度为980px。
CZBBhkrx
·
2020-09-14 11:19
css
记录 vant-ui van-pull-refresh 的一些坑
mounted(){this.freshHeight=document.
documentElement
.clientHeight-this.$refs.fresh.getB
m0_46165460
·
2020-09-14 09:47
html5
javascript
vue
delphi xe 10.1 xml解析
版本(其它版本未测试),TXMLDocument类解析xml文档时,特别注意不要有以下语句:tmpXmlDoc:=TXMLDocument.Create(nil);,前一语句会造成:tmpXmlDoc.
DocumentElement
lushmily
·
2020-09-14 04:20
Delphi
全屏和退出全屏
document).keyup(function(event){if(event.keyCode===8){func()}});//全屏functionfullScreen(){varel=document.
documentElement
刘先森ing
·
2020-09-14 04:24
js遍历DOM树(注释+流程)
//获取页面的根节点varroot=document.
documentElement
//HTML整个页面默认的所有DOM节点//封装一个函数用来,用来获取DOM树的节点名称functionforDOM(
InLett_杨捷
·
2020-09-14 03:21
Vue前端项目-系统监控-数据监控
exportdefault{name:"Druid",data(){return{src:process.env.VUE_APP_BASE_API+"/druid/index.html",height:document.
documentElement
.clientHeight
踏 浪
·
2020-09-14 03:50
vue
Vue前端项目
druid数据源监控
阿里数据源监控
若依监控
解决vue中绝对定位或固定定位在底部的按钮随键盘移动的问题
如下图:(网络配图)解决方式:exportdefault{data(){return{clientHeight:document.
documentElement
.clientHeight,
weixin_34060741
·
2020-09-14 01:41
解决vue中绝对定位或固定定位在底部的按钮被键盘顶起的问题
原始高度screenHeight:0,//实时高度 } },methods:{watchResize(){//实时变化的窗口高度this.screenHeight=document.
documentElement
.clientHeight
嵩小卢
·
2020-09-14 01:18
vue
js
js
vue
捕捉窗口右上角关闭按钮关闭事件
从而区分关闭窗口和页面刷新动作代码如下:window.onbeforeunload=function(){varn=window.event.screenX-window.screenLeft;varb=n>document.
documentElement
.scrollWidth
zh2qiang
·
2020-09-13 23:58
Web开发
返回顶部效果JS实现
监听页面滚动事件第二个参数是回调函数的名称window.removeEventListener('scroll',this.props.changeScrollTopShow)滚动条到顶部的距离document.
documentElement
.scrollTopReact
上官不会飞
·
2020-09-13 23:07
样式
来实现一个js平滑滚动到顶部的小功能
window.requestAnimationFrame){window.requestAnimationFrame=function(cb){returnsetTimeout(cb,10);};}varscrollTop=document.
documentElement
.scr
Vam的金豆之路
·
2020-09-13 22:25
原生js
js回到顶部
scrollTop(){varscrollTop=window.pageYOffset||document.
documentElement
.scrollTop||document.body.scrollTop
左森
·
2020-09-13 22:01
js
vue功能
javascript DIV高度自适应
无标题文档window.onresize=function(){varlen=document.
documentElement
.clientHeight;document.getElementById(
pingnanlee
·
2020-09-13 22:46
Web
基础
js控制浏览器全屏示例代码
来源:http://www.jb51.net/article/47038.htm//全屏模式(注意:在手机上OK,在PC上无效)functionfullScreen(){varel=document.
documentElement
chelen_jak
·
2020-09-13 21:01
Web
实用
JavaScript
Vue/Element-ui动态调整左侧菜单栏高度
exportdefault{data(){return{containerHeight:{height:""}};},created(){//动态调整左侧菜单栏高度vardocHeight=document.
documentElement
.clientHeight
小鹿慢慢跑
·
2020-09-13 21:54
element-ui
Vue
代码控制浏览器全屏
全屏vardocElm=document.
documentElement
;//W3Cif(docElm.requestFullscreen){docElm.requestFullscreen();}//
凌晨两点半`
·
2020-09-13 21:40
浏览器
JavaScript--DOM基本操作
Document//遍历元素节点树varhtml=document.
documentElement
;//整个html文档vari=document.getElementsByTagName('i')[0
CasT1R
·
2020-09-13 19:54
移动端适配
移动端适配1、html2、适配JS(function(doc,win){letdocEl=win.document.
documentElement
;letresizeEvent='orientationchange'inwindow
fyiloutingfengyu
·
2020-09-13 19:59
技术分享
移动端适配
横竖屏温馨提示
function(){functiona(){document.
documentElement
.style.fontSize=document.
documentElement
.clientWidth/640
Summer_water
·
2020-09-13 15:16
javascript
rem自适应原理--vue如何自己利用stylus写rem自适应移动端
首先index.htmlrem//获取屏幕宽度(viewport)lethtmlWidth=document.
documentElement
.clientWidth||document.body.clientWidth
qq_42750608
·
2020-09-13 12:07
vue
rem移动端适配
vue
rem
stylus
px转化为rem
移动端滚动监听
滚动监听:window.onscroll=function(){varscrollTop=document.
documentElement
.scrollTop||document.body.scrollTop
weixin_30764883
·
2020-09-13 09:20
移动端 监听滚动事件 且 监听惯性
vartimer=null;vartimer1=null;window.addEventListener('touchstart',function(e){varscrollTop=document.
documentElement
.scrollTop
夜惊如水
·
2020-09-13 08:54
js代码
js判断滚动条是否停止滚动
function(){if(interval==null)//未发起时,启动定时器,1秒1执行interval=setInterval("test()",1000);topValue=document.
documentElement
.scrollTop
xlb_123
·
2020-09-13 08:46
web前端开发
判断滚动条是否停止滚动
;document.onscroll=function(){clearTimeout(timer)//每次滚动前清除一次timer=setTimeout(function(){m1=document.
documentElement
.scrollTop
LeeNingFeng
·
2020-09-13 07:25
javaScript
js 监听滚动条停止滚动
scroll监听document.onscroll=function(){clearTimeout(timer);timer=setTimeout(isScrollEnd,1000);t1=document.
documentElement
.scrollTop
郭浩326
·
2020-09-13 07:23
javascript
手机屏幕向下滑动分页取数据
一次性查询所有数据会非常的慢,我们就可以通过分页查询一次查询比如10条或者15条之类的方法,分页去查询,速度就会快很多了.window.οnscrοll=function(){varscrollTop=document.
documentElement
.scrollTop
yubin2009m
·
2020-09-13 07:35
js
移动端网页
分页查询数据
解决VUE中document.body.scrollTop为0
$refs.dialogue_box;setTimeout(()=>{document.
documentElement
.scrollTop=div.scrollHeight;},500);});}
Lucky伯爵
·
2020-09-13 03:35
vue 实现全屏和退出全屏的功能
this.outFullCreeen(document):this.inFullCreeen(document.
documentElement
)},inFullCreeen(element){letel
Little_Pig_Bug
·
2020-09-13 01:10
vue
手机端网页自适应解决方案
(function(doc,win){vardocEl=doc.
documentElement
,resizeEvt='orientationchange'inwindow?'
yanbinzou
·
2020-09-12 23:08
移动端如何进行rem的适配
展示rem适配代码//rem适配(function(){varstyleN=document.createElement("style");varwidth=document.
documentElement
.clientWidth
仗剑天涯,从摘要开始
·
2020-09-12 22:08
前端技术文档
移动web开发
上一页
10
11
12
13
14
15
16
17
下一页
按字母分类:
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
其他