请上传宽度大于 1200px,高度大于 164px 的封面图片
    调整图片尺寸与位置
    滚轮可以放大缩小图片尺寸,按住图片拖动可调整位置,多余的会自动被裁剪掉
取消
深巷(uid:433490)
职业资格认证:尚未取得认证
  • 这种区县的地图要怎么做,这是效果图
  • 这个是9.0版本,我10.0版本的地图为什么不是这样的,我现在只想显示一个县级市的地图,周围的地图不显示,10.0的地图会把周围地图也显示出来
  • 怎么只展示一个县级市的地图,并且这个地图可以控制经纬度,有什么办法吗
  • 请问finereport9.0可以ssh进行连接mysql吗,具体需要怎么连接
  • setTimeout(function(){           window.open('${servletURL}?formlet=新开发的看板_test/外购入库看板.frm','_self'); },5000)有一个js,但是打开的报表跳转之后,路径乱码了,麻烦给看一下
  • 从第一个报表定时切换到第二张报表,怎么实现=========================
  • //获取J29单元格值var a=$('td','div#REPORT0').html();//计算新值var b=Number(a.replace(/,/,""))+Number(10);//字体变色$('td','div#REPORT0').css('color','red');//数字转换为千分位的函数function commafy(num){  if(/^.*\..*$/.test(num)){   varpointIndex =num.lastIndexOf(".");   varintPart = num.substring(0,pointIndex);   varpointPart =num.substring(pointIndex+1,num.length);   intPart = intPart +"";    var re =/(-?\d+)(\d{3})/    while(re.test(intPart)){     intPart =intPart.replace(re,"$1,$2")    }   num = intPart+"."+pointPart;  }else{   num = num +"";    var re =/(-?\d+)(\d{3})/    while(re.test(num)){     num =num.replace(re,"$1,$2")    }  }  return num;}//数字转换为千分位var c=commafy(b);//改变单元格值$('td','div#REPORT0').html(c);点击之后里边的值就显示这样
  • 比如点击左边或者右边的加减号,改变中间的数值
  • 外购入库看板.zip决策报表,两个报表有跑马灯,一个report0,一个report1,report0跑马灯悬停一切正常,report1,鼠标悬停没有效果report0的js代码:if(window.interval){clearInterval(window.interval);} //判断之前是否执行过该代码,如果有,就停止之前的执行setTimeout(function(){      var wid=($("div").width()-17)+'px'; //获取报表块宽度      $("div").css('width',wid); //重置报表块宽度      var height=($("div").height()-17)+'px'; //获取报表块高度      $("div").css('height',height); //重置报表块高度  },1000);  window.flag1 = true;var self1 = this;//鼠标悬停,滚动停止setTimeout(function() {    $("div").find(".frozen-center").mouseover(function() {        window.flag1 = false;    });     //鼠标离开,继续滚动    $("div").find(".frozen-center").mouseleave(function() {        window.flag1 = true;    });     var old = -1;    window.interval = setInterval(function() {        if (!self1.isVisible()) {            return;        }        if (window.flag1) {            currentpos1 = $("div").find(".frozen-center").scrollTop;            if (currentpos1 == old && 0!=currentpos1) {                $("div").find(".frozen-center").scrollTop = 0;            } else {                old = currentpos1;                //以25ms的速度每次滚动1.5PX                $("div").find(".frozen-center").scrollTop = currentpos1 + 1.5;            }        }    },    25);},1000);================report1的js代码:if(window.interval){clearInterval(window.interval);} //判断之前是否执行过该代码,如果有,就停止之前的执行setTimeout(function(){      var wid=($("div").width()-17)+'px'; //获取报表块宽度      $("div").css('width',wid); //重置报表块宽度      var height=($("div").height()-17)+'px'; //获取报表块高度      $("div").css('height',height); //重置报表块高度  },1000);  window.flag2 = true;var self1 = this;//鼠标悬停,滚动停止setTimeout(function() {    $("div").find(".frozen-center").mouseover(function() {        window.flag2 = false;    });     //鼠标离开,继续滚动    $("div").find(".frozen-center").mouseleave(function() {        window.flag2 = true;    });     var old = -1;    window.interval = setInterval(function() {        if (!self1.isVisible()) {            return;        }        if (window.flag2) {            currentpos1 = $("div").find(".frozen-center").scrollTop;            if (currentpos1 == old && 0!=currentpos1) {                $("div").find(".frozen-center").scrollTop = 0;            } else {                old = currentpos1;                //以25ms的速度每次滚动1.5PX                $("div").find(".frozen-center").scrollTop = currentpos1 + 1.5;            }        }    },    25);},1000);麻烦给看一下,我的是fr9.0的
  • 决策报表,两个报表块需要跑马灯,report0悬浮鼠标,两个报表块都停止,report1悬浮,两个都没效果,report1滚动条也没去除这个是js脚本report0:setTimeout(function() {    //隐藏报表块REPORT0的滚动条(此报表块名为REPORT0,根据具体情况修改)    $("div").find(".frozen-north").style.overflow = "hidden";    $("div").find(".frozen-center").style.overflow = "hidden";}, 1000);window.flag1 = true;//鼠标悬停,滚动停止  setTimeout(function() {    $(".frozen-center").mouseover(function() {        window.flag1 = false;    });    //鼠标离开,继续滚动      $(".frozen-center").mouseleave(function() {        window.flag1 = true;    });    var old = -1;    var interval = setInterval(function() {        if(window.flag1) {            currentpos = $("div").find(".frozen-center").scrollTop;            if(currentpos == old) {                $("div").find(".frozen-center").scrollTop = 0;            } else {                old = currentpos;                //以25ms的速度每次滚动1.5PX                  $("div").find(".frozen-center").scrollTop = currentpos + 1.5;            }        }    }, 25);}, 1000);report1:setTimeout(function() {    //隐藏报表块REPORT1的滚动条(此报表块名为REPORT1,根据具体情况修改)    $("div").find(".frozen-north").style.overflow = "hidden";    $("div").find(".frozen-center").style.overflow = "hidden";}, 1000);window.flag2 = true;//鼠标悬停,滚动停止  setTimeout(function() {    $(".frozen-center").mouseover(function() {        window.flag2 = false;    });    //鼠标离开,继续滚动      $(".frozen-center").mouseleave(function() {        window.flag2 = true;    });    var old = -1;    var interval = setInterval(function() {        if(window.flag2) {            currentpos = $("div").find(".frozen-center").scrollTop;            if(currentpos == old) {                $("div").find(".frozen-center").scrollTop = 0;            } else {                old = currentpos;                //以25ms的速度每次滚动1.5PX                  $("div").find(".frozen-center").scrollTop = currentpos + 1.5;            }        }    }, 25);}, 1000);

91

9

91

10

个人成就
内容被浏览37,978
加入社区4年166天
返回顶部