// JavaScript Document
// JavaScript Document
/*document.onkeydown = function(){
if(window.event && window.event.keyCode == 123) {
event.keyCode=0;
event.returnValue=false;
}
if(window.event && window.event.keyCode == 13) {
window.event.keyCode = 505;
}
if(window.event && window.event.keyCode == 8) {
window.event.returnValue=false;
}
}
document.oncontextmenu = function (event){
if(window.event){
event = window.event;
}try{
var the = event.srcElement;
if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
return false;
}
return true;
}catch (e){
return false;
}
}
//屏蔽键盘事件
document.onkeydown = function (){
var e = window.event || arguments[0];
//F12
if(e.keyCode == 123){
return false;
//Ctrl+Shift+I
}else if((e.ctrlKey) && (e.shiftKey) && (e.keyCode == 73)){
return false;
//Shift+F10
}else if((e.shiftKey) && (e.keyCode == 121)){
return false;
//Ctrl+U
}else if((e.ctrlKey) && (e.keyCode == 85)){
setTimeout(function(){
},1);
return false;
}
};
//屏蔽鼠标右键
document.oncontextmenu = function (){
setTimeout(function(){
},1);
return false;
}*/
$('#gotop').click(function () {
$('html,body').animate({
scrollTop : '0px'
}, 600);
});
$('.search_btn').on('click',function(){
$('.search-dialog-box').toggleClass("on");
});
$('.search-dialog-box .pub-close').on('click',function(){
$('.search-dialog-box').removeClass("on");
});
$('.btn[name]').click(function() {
var tf_name_id = $(this).attr('name');
$('.tc[name=' + tf_name_id + ']').addClass('act');
});
$('.close').click(function() {
$(this).parents('.tc').removeClass('act')
});
$('.tc-bg').click(function() {
$(this).parents('.tc').removeClass('act')
});
$(function(){
//menu
var vNavWaitSlide,NavWaitSlide;
$('.navBox li').hover(
function(){
$(this).addClass("active");
var current_li=$(this),targ=$(current_li).find('.subNavbox');
NavWaitSlide = setTimeout(function() {
if(!$(targ).is(':visible'))
{
$(targ).slideDown(300);
}
},100)
},
function(){
clearTimeout(NavWaitSlide);
$(this).find('.subNavbox').hide();
$(this).removeClass("active");
}
);
$(".anniu_btn").mouseenter(function () {
$(".shengyu").stop(false, false).animate({ top: 110, opacity: "show" }, 300);
});
$(".anniu_btn").mouseleave(function () {
$(".shengyu").stop(false, false).animate({ top: 130, opacity: "hide" }, 300);
});
//教师简介下拉表
$(".jys_lis .title .list").css({"opacity":"1","visibility":"visible"});
/* $("#m_nav .title .a").attr("href","javascript:void(0)");
$("#m_nav .title .void>a").attr("href","javascript:void(0)");*/
$(".jys_list .title i").click(function(){
var tt = $(this).parents(".title");
if ($(tt).hasClass('on')) {
$(tt).children(".list").slideUp(600); //展开
$(tt).removeClass("on");
}else{
$(".jys_lis .title ").removeClass("on");
$(".jys_lis .title .list").slideUp();
$(tt).children(".list").slideDown();
$(tt).toggleClass("on");
}
});
//移动端导航
$("#m_nav .title .list").css({"opacity":"1","visibility":"visible"});
/* $("#m_nav .title .a").attr("href","javascript:void(0)");
$("#m_nav .title .void>a").attr("href","javascript:void(0)");*/
$("#m_nav .title i").click(function(){
var tt = $(this).parents(".title");
if ($(tt).hasClass('on')) {
$(tt).children(".list").slideUp(600); //展开
$(tt).removeClass("on");
}else{
$("#m_nav .title ").removeClass("on");
$("#m_nav .title .list").slideUp();
$(tt).children(".list").slideDown();
$(tt).toggleClass("on");
}
});
/*$("#m_nav .sub").hide();
$("#m_nav .void").click(function(){
$(this).children(".sub").slideToggle(); //展开
});*/
$("#nav_btn_box").click(function(){
$("#nav_btn_box .point").toggleClass("on");
$("#nav_btn_box").toggleClass("on");
$("#m_nav").toggleClass("act");
$(".nav_mask").fadeToggle();
});
$(".nav_mask").click(function(){
$("#nav_btn_box .point").removeClass("on");
$("#nav_btn_box").removeClass("on");
$(this).fadeToggle();
$(".nav_btn_box").removeClass("act");
$("#m_nav").removeClass("act");
})
//移动端内页导航
$("#bnt_sub_nav").click(function(){
$(this).toggleClass("on");
$("#sub_nav_content").slideToggle();
});
$("#sub_nav_content dt.title a").attr("href","javascript:void(0)");
$("#sub_nav_content dt.title_on").next("dd").show();
$("#sub_nav_content dt.title").click(function() {
if ($(this).hasClass("title_on")) {
$(this).next("dd").slideToggle();
$(this).removeClass("title_on");
} else {
$("#sub_nav_content dd").slideUp();
$("#sub_nav_content dt.title").removeClass("title_on").removeClass("on");
$(this).toggleClass("title_on");
$(this).next("dd").slideDown();
}
});
$("#sub_nav_content ul li i").click(function(){
$(this).next("ul").slideToggle();
$(this).parents("#sub_nav_content ul li").siblings().find("ul").slideUp();
});
if ($(".container02 .right ul").length) {
$(".container02 .right ul li").each(function (i) {
$(this).addClass("wow fadeInUp").css({ 'animation-delay': i * 100 + 200 + 'ms' });
});
}
if ($(".container04 ul, .container05 ul.ul1, .container05 ul.ul2, .container03 ul").length) {
$(".container04 ul li, .container05 ul.ul1 li, .container05 ul.ul2 li, .container03 ul li").each(function (i) {
$(this).addClass("wow fadeInUp");
});
}
if ($(".wow").length) {
if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))) {
var wow = new WOW({
boxClass: 'wow',
animateClass: 'animated',
offset: 50,
mobile: true,
live: true
});
wow.init();
};
}
//IE9 兼容placdholder属性
function placeholderSupport() {
return 'placeholder' in document.createElement('input');
}
if(!placeholderSupport()){ // 判断浏览器是否支持 placeholder
$("[placeholder]").each(function(){
var _this = $(this);
// console.log($(this).height());
var inputHeight = parseInt(parseInt($(this).height()-2)-14)/2;
var inputHeight = parseInt(parseInt(parseInt($(this).height()-2)/2)-7)+'px';
_this.parent().css({"position": "relative"});
var left = _this.position().left+parseInt(_this.css("padding-left"))+parseInt(_this.css("margin-left"))+"px";
var top = parseInt(_this.css("padding-top"));//+parseInt(_this.css("margin-top"))+"px";
var top = parseInt(_this.css("padding-top"));//+parseInt(_this.css("margin-top"))+"px";
_this.after('' + _this.attr("placeholder") + '');
//_this.after('' + _this.attr("placeholder") + '');
if(_this.val() != ""){
_this.parent().find("span.placeholder").hide();
}
else{
_this.parent().find("span.placeholder").show();
}
}).on("focus", function(){
$(this).parent().find("span.placeholder").hide();
}).on("blur", function(){
var _this = $(this);
if(_this.val() != ""){
_this.parent().find("span.placeholder").hide();
}
else{
_this.parent().find("span.placeholder").show();
}
});
// 点击表示placeholder的标签相当于触发input
$("span.placeholder").on("click", function(){
$(this).hide();
$(this).siblings("[placeholder]").trigger("click");
$(this).siblings("[placeholder]").trigger("focus");
});
}
});