//烟台朱葛软件js文件(基础) //添加cookie addCookieIn //获取指定名称的cookie的值 getCookieIn //给所有的相关标签添加class并添加title addCladdAndTitle //动态加载js loadJs //开启辅助线 zoomMoveFuIn(页面需添加yx_mousefollow_y、yx_mousefollow_x两个横、竖线的div) //辅助线初始化 zoomMoveFuCooIn cookie:zgCoMoveFu辅助线(0关闭辅助线、1十字、2横线、3竖线) //鼠标样式切换 cursorStyle(页面需添加id为:cursorStyleCss的style文件引入) //鼠标样式切换初始化 cursorStyleIn cookie:zgCoCursorStyle鼠标样式(0默认、1粗黑) //页面放大、缩小 pageZoomSize //页面大小初始化 pageZoomIn cookie:zgCoPageZoom页面大小(0-5) //文字放大、缩小 changeFontItem //文字大小初始化 changeFontIn cookie:zgCoPageFont文字大小(0 - n) //高对比度 changeColorItem //高对比度初始化 changeColorIn cookie:zgCoPageColor高对比度(0、默认,1、白底黑字,2、蓝底黄字,3、黄底黑字,4、黑底黄字) //父窗口window.parent //语音速度(默认5,值0-9),语音状态(0未开启、1指读、2连读),大字幕(0未开启,1简体,2繁体,3简体拼音,4繁体拼音) //添加cookie function addCookieIn(objValue, objName) { var str = objName + "=" + escape(objValue) + ";path=/"; document.cookie = str; } //获取指定名称的cookie的值 function getCookieIn(objName) { var arrStr = document.cookie.split("; "); for (var i = 0; i < arrStr.length; i++) { var temp = arrStr[i].split("="); if (temp[0] == objName) { return unescape(temp[1]); } } return ""; } //给所有的相关标签添加class并添加title function addCladdAndTitle() { //a标签 $("a").each(function (i) { $(this).addClass("ZGATitle"); //如果标签没有title,添加title if (typeof ($(this).attr("title")) == "undefined") { $(this).attr("title", $(this).text()); } else if ($(this).attr("title") == "") { $(this).attr("title", $(this).text()); } }) } //$(function(){addCladdAndTitle();}); //动态加载js function loadJs(url, callback) { var script = document.createElement('script'); script.type = "text/javascript"; if (typeof (callback) != "undefined") { if (script.readyState) { script.onreadystatechange = function () { if (script.readyState == "loaded" || script.readyState == "complete") { script.onreadystatechange = null; callback(); } } } else { script.onload = function () { callback(); } } } script.src = url; document.body.appendChild(script); } //无障碍面板 function bsPanel() { var bsPanelId = getCookieIn("zgCoBfPanel"); if (bsPanelId == "") { //如果没有设置无障碍面板,定义为开启面板 bsPanelId = 0; } if (bsPanelId == 1) { bsPanelId = 0; } else { bsPanelId = 1; } addCookieIn(bsPanelId, "zgCoBfPanel"); bsPanelIn(); } //无障碍面板 function bsPanelIn() { var bsPanelId = getCookieIn("zgCoBfPanel"); if (bsPanelId == "") { //如果没有设置无障碍面板,定义为关闭面板 addCookieIn(0, "zgCoBfPanel"); bsPanelId = 0; } if (bsPanelId == 1) { //开启面板 $(".wza").css("display", "block"); document.getElementById("logo_nav_a").innerHTML = "关闭无障碍面板"; document.getElementById("logo_nav_a").title = "关闭无障碍面板"; } else { //关闭面板 $(".wza").css("display", "none"); document.getElementById("logo_nav_a").innerHTML = "开启无障碍面板"; document.getElementById("logo_nav_a").title = "开启无障碍面板"; } } //开启辅助线 function zoomMoveFuIn(zoomMoveFuId) { addCookieIn(zoomMoveFuId, "zgCoMoveFu"); zoomMoveFuCooIn(); } //辅助线初始化 function zoomMoveFuCooIn() { var zgMoveFu = getCookieIn("zgCoMoveFu"); if (zgMoveFu == "") { //如果没有设置辅助线,定义为关闭辅助线 addCookieIn(0, "zgCoMoveFu"); zgMoveFu = 0; } //0关闭辅助线、1十字、2横线、3竖线 if (zgMoveFu == 1) { //十字 document.getElementById("yx_mousefollow_y").style.display = "block"; document.getElementById("yx_mousefollow_x").style.display = "block"; document.documentElement.onmousemove = zoomMoves; } else if (zgMoveFu == 3) { //竖线 document.getElementById("yx_mousefollow_x").style.display = "block"; document.getElementById("yx_mousefollow_y").style.display = "none"; document.documentElement.onmousemove = zoomMoves; } else if (zgMoveFu == 2) { //横线 document.getElementById("yx_mousefollow_x").style.display = "none"; document.getElementById("yx_mousefollow_y").style.display = "block"; document.documentElement.onmousemove = zoomMoves; } else { document.getElementById("yx_mousefollow_x").style.display = "none"; document.getElementById("yx_mousefollow_y").style.display = "none"; document.documentElement.onmousemove = ""; } } function zoomMoves(ev) { if ((isFirefox = navigator.userAgent.indexOf("Firefox") > 0) || (isFirefox = navigator.userAgent.indexOf("Chrome") > 0)) { document.getElementById("yx_mousefollow_x").style.height = document.body.scrollHeight + "px"; document.getElementById("yx_mousefollow_y").style.width = document.body.scrollWidth + "px"; document.getElementById("yx_mousefollow_x").style.left = (ev.pageX + 10 + document.documentElement.scrollLeft) + "px"; document.getElementById("yx_mousefollow_y").style.top = (ev.pageY + 10) + "px"; } else { document.getElementById("yx_mousefollow_x").style.height = document.documentElement.scrollHeight + "px"; document.getElementById("yx_mousefollow_y").style.width = document.documentElement.scrollWidth - 3 + "px"; document.getElementById("yx_mousefollow_x").style.pixelLeft = window.event.clientX + 10 + document.documentElement.scrollLeft; document.getElementById("yx_mousefollow_y").style.pixelTop = window.event.clientY + 10 + document.documentElement.scrollTop; } } //鼠标样式切换 function cursorStyle(cursorId) { addCookieIn(cursorId, "zgCoCursorStyle"); cursorStyleIn(); if (cursorId == 1) { history.go(0); } } //鼠标样式切换初始化 function cursorStyleIn() { var cursorId = getCookieIn("zgCoCursorStyle"); if (cursorId == "") { //如果没有设置鼠标样式,定义为默认 addCookieIn(0, "zgCoCursorStyle"); cursorId = 0; } if (cursorId == 1) { //粗黑 var pathName1 = barrierFreeUrl + "/css/cursorStyleBlack.css"; document.getElementById("cursorStyleCss").href = pathName1; } else { //默认 document.getElementById("cursorStyleCss").href = ""; } } //页面放大、缩小 function pageZoomSize(sizeZoomId) { var pageZoomSizeString = getCookieIn("zgCoPageZoom"); var pageZoomSize = 0; if (pageZoomSizeString == "") { } else { pageZoomSize = parseInt(pageZoomSizeString); } if (sizeZoomId == 0) { if (pageZoomSize > 0) { pageZoomSize = pageZoomSize - 1; addCookieIn(pageZoomSize, "zgCoPageZoom"); pageZoomIn(); } } else { if (pageZoomSize < 5) { pageZoomSize = pageZoomSize + 1; addCookieIn(pageZoomSize, "zgCoPageZoom"); pageZoomIn(); } } } //页面大小初始化 function pageZoomIn() { var pageZoomIn1 = getCookieIn("zgCoPageZoom"); if (pageZoomIn1 == "") { //如果没有设置页面大小,定义为0 addCookieIn(0, "zgCoPageZoom"); pageZoomIn1 = 0; } pageZoomInZG(pageZoomIn1); } function pageZoomInZG(pageZoomIn) { //放大 if (isFirefox = navigator.userAgent.indexOf("Firefox") > 0) { //document.body.style.zoom = 1 + pageZoomIn / 10; //document.body.style.cssText += '; -moz-transform: scale(' + (1 + pageZoomIn / 10) + ');-moz-transform-origin: 0 0; '; $("#body_div").css("zoom", 1 + pageZoomIn / 10); $("#body_div").css("-moz-transform", "scale(" + (1 + pageZoomIn / 10) + ")"); $("#body_div").css("-moz-transform-origin", "0 0"); } else { //$("#body_div").css("zoom",1 + pageZoomIn / 10); //$("#body_div").css("overflow","scroll"); if (pageZoomIn > 0) document.body.style.zoom = 1 + pageZoomIn / 10; else document.body.style.zoom = 1; //document.body.style.overflow = "scroll"; } } //文字放大、缩小 function changeFontItem(fontId) { //获取cookie var pageFontIn = getCookieIn("zgCoPageFont"); var pageFontInt = 0; if (pageFontIn == "") { } else { pageFontInt = parseInt(pageFontIn); } if (fontId == 1) { //放大 if (pageFontInt < 10) { pageFontInt = pageFontInt + 2; addCookieIn(pageFontInt, "zgCoPageFont"); for (var j = 0; j < document.styleSheets.length; j++) { var cssset = document.styleSheets[j].cssRules || document.styleSheets[j].rules || window.CSSRule.STYLE_RULE; for (var i = 0; i < cssset.length; i++) { var sheet = cssset[i]; if (typeof (sheet.style) == "undefined") { } else { if (typeof (sheet.style.fontSize) == "undefined") { //console.log("unde"); } else { var size = sheet.style.fontSize; if (size != "") { tmp = parseInt(size) + 2; sheet.style.fontSize = tmp + "px"; } } } } } } } else { //缩小 if (pageFontInt > 0) {//当点击放大文字按钮后才能缩小文字 pageFontInt = pageFontInt - 2; addCookieIn(pageFontInt, "zgCoPageFont"); for (var j = 0; j < document.styleSheets.length; j++) { var cssset = document.styleSheets[j].cssRules || document.styleSheets[j].rules || window.CSSRule.STYLE_RULE; for (var i = 0; i < cssset.length; i++) { var sheet = cssset[i]; if (typeof (sheet.style) == "undefined") { } else { if (typeof (sheet.style.fontSize) == "undefined") { //console.log("unde"); } else { var size = sheet.style.fontSize; if (size != "") { tmp = parseInt(size) - 2; sheet.style.fontSize = tmp + "px"; } } } } } } } } //文字大小初始化 function changeFontIn() { var pageFontIn = getCookieIn("zgCoPageFont"); if (pageFontIn == "") { //如果没有设置文字大小,定义为0 addCookieIn(0, "zgCoPageFont"); pageFontIn = 0; } else { if (parseInt(pageFontIn) <= 0) { } else { for (var j = 0; j < document.styleSheets.length; j++) { var cssset = document.styleSheets[j].cssRules || document.styleSheets[j].rules || window.CSSRule.STYLE_RULE; for (var i = 0, len = cssset.length; i < len; i++) { var sheet = cssset[i]; if (typeof (sheet.style) == "undefined") { } else { if (typeof (sheet.style.fontSize) == "undefined") { //console.log("unde"); } else { var size = sheet.style.fontSize; if (size != "") { tmp = parseInt(size) + parseInt(pageFontIn); sheet.style.fontSize = tmp + "px"; } } } } } } } } //高对比度 function changeColorItem(colorId) { if (colorId == "0") { //原始配色 addCookieIn(colorId, "zgCoPageColor"); //$("body").css({ "background-color": "", "color": "", "background-image": "" }); //$("*").not(".bfColor_Other,.bfColor_Other_In").each(function () { // //$(this).css({ "background-color": "", "color": "", "background-image": "" }); // $(this).css({ "background-color": $(this).attr("data-css"), "color": "", "background-image": "" }); //}); location.reload(); } else { addCookieIn(colorId, "zgCoPageColor"); changeColorIn(); } } //高对比度初始化 function changeColorIn() { //高对比度编号:0、默认,1、黑底白字,2、蓝底黄字,3、黄底黑字,4、黑底黄字 var pageColorIn = getCookieIn("zgCoPageColor"); if (pageColorIn == "") { //如果没有设置高对比度,定义为0 addCookieIn(0, "zgCoPageColor"); pageColorIn = 0; } if (pageColorIn > 0) { //给不变化的div内所有控件加标签 $(".bfColor_Other").find("*").each(function () { $(this).addClass("bfColor_Other_In"); }); $("*").not(".bfColor_Other,.bfColor_Other_In").each(function () { if (pageColorIn == "1") { $(this).css({ "background-color": "#000000", "color": "#ffffff", "background-image": "none" }); } else if (pageColorIn == "2") { $(this).css({ "background-color": "#9933ff", "color": "#ffffff", "background-image": "none" }); } else if (pageColorIn == "3") { $(this).css({ "background-color": "#0099ff", "color": "#000000", "background-image": "none" }); } else if (pageColorIn == "4") { $(this).css({ "background-color": "#ffffff", "color": "#ff0000", "background-image": "none" }); } }); $("input,select,textarea").each(function () { if (pageColorIn == "1") { $(this).css({ "border-width": "1px","border-style":"solid","border-color":"#ffffff" }); } else if (pageColorIn == "2") { $(this).css({ "border-width": "1px", "border-style": "solid", "border-color": "#ffffff" }); } else if (pageColorIn == "3") { $(this).css({ "border-width": "1px", "border-style": "solid", "border-color": "#000000" }); } else if (pageColorIn == "4") { $(this).css({ "border-width": "1px", "border-style": "solid", "border-color": "#ff0000" }); } }); } } $(function () { //setTimeout(function () { // $("*").not(".bfColor_Other,.bfColor_Other_In").each(function () { // $(this).attr("data-css", $(this).css("background-color")); // }); //}, 100); setTimeout(function () { //给所有的相关标签添加class并添加title addCladdAndTitle(); //为div、td中的文字增加span标签 addSpanTag(); //无障碍面板 bsPanelIn(); //setVerLdIn(); //初始化cookie //辅助线 zoomMoveFuCooIn(); //鼠标样式 cursorStyleIn(); //网页大小 pageZoomIn(); //文字大小 changeFontIn(); //高对比度 changeColorIn(); //显示屏 chageMagnifierChage(); ////朗读状态 var speakState = getCookieIn("zgCoSpeakState"); if (speakState == "") { //如果没有设置指读或连读,定义为关闭 speakState = 0; addCookieIn(speakState, "zgCoSpeakState"); } else if (speakState == 1) { //指读 chageStartPointSpeakIn(); } else if (speakState == 2) { //连读 chageStartConSpeakIn(); } }, 200); });