鼠标移入背景图替换

image.png决策报表,鼠标移入报表块,替换背景图片

FineReport 叶枫1213 发布于 2023-11-29 10:21
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共2回答
最佳回答
0
snrtuemcLv8专家互助
发布于2023-11-29 10:24(编辑于 2023-11-29 11:10)

试试

setTimeout(function() {

$("div[widgetName^=REPORT0]").hover(function() {

$(this).css("background", "url(http://localhost:8075/webroot/help/picture/on.png)");

},

function() {

$(this).css("background", "url(http://localhost:8075/webroot/help/picture/on.png)");

}

)

}, 100)

===========

setTimeout(function() {

$("div[widgetName^=REPORT0]").hover(function() {

$(this).css("background", "url(http://localhost:8075/webroot/help/picture/on.png)no-repeat");

},

function() {

$(this).css("background", "url(http://localhost:8075/webroot/help/picture/on.png)no-repeat");

}

)

}, 100)

  • 叶枫1213 叶枫1213(提问者) 这个是可以的,但是图形会平铺,我希望是适应,最好是拉伸
    2023-11-29 11:06 
  • 叶枫1213 叶枫1213(提问者) 有没有地方设置啊
    2023-11-29 11:06 
  • snrtuemc snrtuemc 回复 叶枫1213(提问者) 加一代码试试,参考修改答案
    2023-11-29 11:09 
最佳回答
0
用户k6280494Lv6资深互助
发布于2023-11-29 10:25

$("#myDiv").mouseenter(function() {  

    // 当鼠标指针进入 #myDiv 元素时,执行以下代码  

    console.log("鼠标进入");  

  });  

  

  $("#myDiv").mouseleave(function() {  

    // 当鼠标指针离开 #myDiv 元素时,执行以下代码  

    console.log("鼠标离开");  

  });  

  • 2关注人数
  • 146浏览人数
  • 最后回答于:2023-11-29 11:10
    请选择关闭问题的原因
    确定 取消
    返回顶部