- Scan ID:
- cfdba494-9e99-4286-b6f4-f0edd3576d61Finished
- Submitted URL:
- https://pace.madin68.cyou/
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 6 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
webpackJsonp | function |
__core-js_shared__ | object |
eventBus | object |
Console log messages · 2 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
log | other |
|
verbose | dom |
|
HTML
The raw HTML body of the page
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="viewport" content="viewport-fit=cover,width=device-width,height=device-height,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"><title>Gemini</title><style type="text/css">.header .header-box .my-h-top{
color:#ebcc7f!important;
background: transparent!important;
}
/*input{*/
/* text-align: right!important;*/
/*}*/</style><link href="/static/css/app.53d0423e2fdedede4fdddee9d7b75f5d.css" rel="stylesheet"></head><body><div id="app"></div><script>window.onload = function () {
// 阻止双击放大
var lastTouchEnd = 0;
document.addEventListener('touchstart', function (event) {
if (event.touches.length > 1) {
event.preventDefault();
}
});
document.addEventListener('touchend', function (event) {
var now = (new Date()).getTime();
if (now - lastTouchEnd <= 300) {
event.preventDefault();
}
lastTouchEnd = now;
}, false);
// 阻止双指放大
document.addEventListener('gesturestart', function (event) {
event.preventDefault();
});
}
</script></body></html>