5 ,提示框 :

1 ,提示框 :

  1. 代码 :
$("#tip").tooltip({
    //  内容
    content:"<strong>废话,爱到不要不要</strong>",
    //  位置
    position:"bottom",
    //  是否鼠标跟随
    trackMouse:true,
})
  1. 效果 : 鼠标落上,看到提示
    在这里插入图片描述

2 ,左右微调,上下微调 : deltaX

$("#tip").tooltip({
    // 内容
    content:"<strong>废话,爱到不要不要</strong>",
    //  位置
    position:"bottom",
    //  是否鼠标跟随
    trackMouse:true,
    //  位置微调 :
    deltaX:10,
    deltaY:10,
})
发布了472 篇原创文章 · 获赞 25 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/qq_34319644/article/details/104155644