Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

admin.js 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. $(function() {
  2. //操作提示缩放动画
  3. $("#checkZoom").prop('data-showOrHide', 'show');
  4. $("#checkZoom").on('click', function(){
  5. var showOrHide = $(this).attr('data-showOrHide');
  6. if ('hide' == showOrHide) {
  7. $(this).attr('data-showOrHide', 'show');
  8. $("#explanation").animate({
  9. color: "#2CBCA3",
  10. backgroundColor: "#EDFBF8",
  11. width: "100%",
  12. height: "20",
  13. },300,function() {
  14. $(this).css('height', '100%');
  15. });
  16. $("#explanationZoom").show();
  17. } else {
  18. $(this).attr('data-showOrHide', 'hide');
  19. $("#explanation").animate({
  20. color: "#FFF",
  21. backgroundColor: "#4FD6BE",
  22. width: "80",
  23. height: "20",
  24. },300);
  25. $("#explanationZoom").hide();
  26. }
  27. });
  28. //自定义radio样式
  29. $(".cb-enable").on('click', function(){
  30. var parent = $(this).parents('.onoff');
  31. $('.cb-disable',parent).removeClass('selected');
  32. $(this).addClass('selected');
  33. $('.checkbox',parent).attr('checked', true);
  34. });
  35. $(".cb-disable").on('click', function(){
  36. var parent = $(this).parents('.onoff');
  37. $('.cb-enable',parent).removeClass('selected');
  38. $(this).addClass('selected');
  39. $('.checkbox',parent).attr('checked', false);
  40. });
  41. // 显示隐藏预览图 start
  42. $('.show_image').hover(
  43. function(){
  44. $(this).next().css('display','block');
  45. },
  46. function(){
  47. $(this).next().css('display','none');
  48. }
  49. );
  50. // 全选 start
  51. $('.checkall').click(function(){
  52. $('.checkall').attr('checked',$(this).attr('checked') == 'checked');
  53. $('.checkitem').each(function(){
  54. $(this).attr('checked',$('.checkall').attr('checked') == 'checked');
  55. });
  56. });
  57. $("#btnGet").click(function () {
  58. $("body,html").animate({ scrollTop: 480 }, 800);
  59. });
  60. var isPostback = 'False';
  61. /* BACK TO TOP */
  62. if (isPostback == "False") {
  63. /* 窗体滚动事件 */
  64. $(window).scroll(function () {
  65. //判断滚动条的垂直位置是否大于0,说白了就是:判断滚动条是否在顶部
  66. if ($(window).scrollTop() <= 0) {
  67. $("#goTop").stop(true, false).animate({ bottom: "-156px" }, 500); //动画隐藏ID="doTop"的这个层
  68. } else {
  69. $("#goTop").stop(true, false).animate({ bottom: "30px" }, 500); //动画显示ID="doTop"的这个层
  70. }
  71. });
  72. /* 此方法可以不加,这里加这个的目的是去除在IE下点击出现的虚线框 */
  73. $("button").click(function () {
  74. if (this.focus) {
  75. this.blur();
  76. }
  77. })
  78. /* 点击返回顶部箭头的事件 */
  79. $("#btntop").click(function () {
  80. $("body,html").animate({ scrollTop: 0 }, 500); //返回顶部,用JQ的animate动画
  81. });
  82. /* 点击返回底部箭头的事件 */
  83. $("#btnbottom").click(function () {
  84. $("body,html").animate({ scrollTop: document.body.clientHeight }, 500); //返回底部,用JQ的animate动画
  85. });
  86. var adsId = '14406';
  87. if (adsId == "13868" || adsId == "14406") {
  88. setTimeout('$(".slidePopupBox").slideUp("slow")', 1500);
  89. } else {
  90. $(".slidePopupBox").hide();
  91. }
  92. } else {
  93. $(".slidePopupBox").hide();
  94. }
  95. // 高级搜索边栏动画
  96. $('#searchBarOpen').click(function() {
  97. $('.ncap-search-ban-s').animate({'right': '-40px'},200,
  98. function() {
  99. $('.ncap-search-bar').animate({'right': '0'},300);
  100. });
  101. });
  102. $('#searchBarClose').click(function() {
  103. $('.ncap-search-bar').animate({'right': '-240px'}, 300,
  104. function() {
  105. $('.ncap-search-ban-s').animate({'right': '0'}, 200);
  106. });
  107. });
  108. // 搜索项目过多时出现滚动条
  109. $('#searchCon').height($(window).height()-90).perfectScrollbar();
  110. });
  111. /* 火狐下取本地全路径 */
  112. function getFullPath(obj)
  113. {
  114. if(obj)
  115. {
  116. // ie
  117. if (window.navigator.userAgent.indexOf("MSIE")>=1)
  118. {
  119. obj.select();
  120. if(window.navigator.userAgent.indexOf("MSIE") == 25){
  121. obj.blur();
  122. }
  123. return document.selection.createRange().text;
  124. }
  125. // firefox
  126. else if(window.navigator.userAgent.indexOf("Firefox")>=1)
  127. {
  128. if(obj.files)
  129. {
  130. //return obj.files.item(0).getAsDataURL();
  131. return window.URL.createObjectURL(obj.files.item(0));
  132. }
  133. return obj.value;
  134. }
  135. return obj.value;
  136. }
  137. }
  138. $(function(){
  139. $(".bDiv").scroll(function(){
  140. var bdiv = $(".bDiv").scrollLeft();
  141. $('.hDiv').css('overflow','auto').scrollLeft(bdiv);
  142. });
  143. })