Home > Web Front-end > JS Tutorial > body text

A small example of javascript detecting whether the page is zoomed_javascript skills

WBOY
Release: 2016-05-16 17:33:43
Original
1254 people have browsed it
Copy code The code is as follows:

/*
* zoomCheck
*/
jQuery(function($){
var dCheck = $("#zoomCheck");
if(dCheck.size() != 0){
return;
}
dCheck = $("").attr('id',"zoomCheck").css({
position :'fixed',
left : '5px'
} ).hide().appendTo('body');
var time;
time = setInterval(function(){
dCheck.show();
var left = dCheck.position() .left;
dCheck.hide();
if(left != 5){
clearInterval(time);
alert('Your page is in a zoomed state, and there will be problems with page display. Please set it to normal status windows:ctrl 0 mac:command 0');
}
},2000);
});
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!