D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
epksuofuukz9
/
public_html
/
js
/
Filename :
slider.js
back
Copy
/* ------------------------------------------------------------ Function to activate form button to open the slider. ------------------------------------------------------------ */ function open_panel() { slideIt(); var a = document.getElementById("sidebar"); a.setAttribute("id", "sidebar1"); a.setAttribute("onclick", "close_panel()"); } /* ------------------------------------------------------------ Function to slide the sidebar form (open form) ------------------------------------------------------------ */ function slideIt() { var slidingDiv = document.getElementById("slider"); var stopPosition = 0; if (parseInt(slidingDiv.style.right) < stopPosition) { slidingDiv.style.right = parseInt(slidingDiv.style.right) + 2 + "px"; setTimeout(slideIt, 1); } } /* ------------------------------------------------------------ Function to activate form button to close the slider. ------------------------------------------------------------ */ function close_panel() { slideIn(); a = document.getElementById("sidebar1"); a.setAttribute("id", "sidebar"); a.setAttribute("onclick", "open_panel()"); } /* ------------------------------------------------------------ Function to slide the sidebar form (slide in form) ------------------------------------------------------------ */ function slideIn() { var slidingDiv = document.getElementById("slider"); var stopPosition = -342; if (parseInt(slidingDiv.style.right) > stopPosition) { slidingDiv.style.right = parseInt(slidingDiv.style.right) - 2 + "px"; setTimeout(slideIn, 1); } }