项目中常用的一些功能--jQuery
程序员文章站
2024-03-23 16:51:04
...
功能:title属性的拓展:
对是否文本显示全没做出判断,当显示全时鼠标移上去不显示预览盒子;当显示不全时鼠标移上去显示预览盒子
_this.$element.find('.event-dictionary-table-item-list .e-matter').on('mouseover',function(){
var val = $(this).text();
var thisWidth = $(this).width(); // 文本div 的宽度
var wordWidth = $(this)[0].scrollWidth; // 先转为js对象; 文字的宽度
if(wordWidth > thisWidth){
$('.matter-box').text(val).css({
top:$(this).offset().top - 130 * Global.common.screen_level - $('.matter-box').height(),
left:$(this).offset().left - 1315 * Global.common.screen_level,
}).show();
}else{
$('.matter-box').html('').hide();
}
})
_this.$element.find('.event-dictionary-table-item-list .e-matter').on('mouseout',function(){
$('.matter-box').html('').hide();
})
效果展示
上一篇: NanoPi K2 (Amlogic S905)无法下载Android源码
下一篇: (转载)web服务器比较Apache Nginx lighttpd HAProx Litespeed 缓冲原理解析fastcgi性能
推荐阅读
-
项目中常用的一些功能--jQuery
-
vue中关于router,vuex,axios,api,utils的一些常用配置
-
使用vim编辑器的一些常用开发功能
-
android中的布局模式以及android中的一些常用快捷键
-
【VBA记录】记录使用VBA中,一些常用到的语法和函数
-
最近项目中常用到的一些函数(包括es6语法)
-
Vim中的一些常用操作
-
如何解决一些项目开发和维护中的问题——Hibernate实战篇 博客分类: hibernate Hibernate项目管理SpringSQLDAO
-
如何解决一些项目开发和维护中的问题——Hibernate实战篇 博客分类: hibernate Hibernate项目管理SpringSQLDAO
-
oracle中的一些常用函数及示例