Files
wace_plm/WebContent/WEB-INF/view/main/toggle.jsp

51 lines
1.5 KiB
Plaintext
Raw Normal View History

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="com.pms.common.utils.*"%>
<%@ page import="java.util.*" %>
<%@include file= "/init.jsp" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><%=Constants.SYSTEM_NAME%></title>
<script>
function fntg_changeSize(){
var frameVal = parent.document.getElementById('parentsObj').cols;
if("0px,8px,*" == frameVal){
parent.document.getElementById('parentsObj').cols = "197px,8px,*";
}else{
parent.document.getElementById('parentsObj').cols = "0px,8px,*";
}
}
function fntg_changeSizeS(){
parent.document.getElementById('parentsObj').cols = "0px,1px,*";
}
function fntg_changeSizeM(){
parent.document.getElementById('parentsObj').cols = "197px,1px,*";
}
$(document).ready(function(){
$("#side1 img").hover(function() {
$(this).css("opacity","0").stop().attr("src", "/images/toggle_hover.png").animate({opacity:1},800);
}, function(){
$(this).css("opacity","1").stop().attr("src", "/images/toggle.png");
});
});
</script>
</head>
<body>
<form name="form1" action="" method="post">
<!-- 토글 기능 주석처리 230522
-->
<body id="side1" style="height:100%; background-color:#e7eaee;overflow: none;">
<img src="/images/toggle.png" alt="" style="cursor: pointer;" onclick="fntg_changeSize()">
</body>
</form>
</body>
</html>