admin.js 790 B

1234567891011121314151617181920212223242526272829
  1. function showbox(id,width,height)
  2. {
  3. $("."+id).fancybox({
  4. 'width': width,
  5. 'height': height,
  6. 'autoScale': false,
  7. 'transitionIn': 'none',
  8. 'transitionOut': 'none',
  9. 'type': 'iframe',
  10. 'opacity' : false,
  11. 'overlayShow' : true,
  12. 'transitionIn' : 'elastic',
  13. 'transitionOut' : 'none'
  14. });
  15. }
  16. /*ȡcookies*/
  17. var getCookie = function (c_name) {
  18. if (document.cookie.length > 0) {
  19. c_start = document.cookie.indexOf(c_name + "=");
  20. if (c_start != -1) {
  21. c_start = c_start + c_name.length + 1;
  22. c_end = document.cookie.indexOf(";", c_start);
  23. if (c_end == -1) c_end = document.cookie.length;
  24. return decodeURIComponent(document.cookie.substring(c_start, c_end));
  25. }
  26. }
  27. return "";
  28. }