Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Jquery 和 CSS 开发一个“自制”工具提示,
似乎工作正常,
http://jsfiddle.net/GLZFc/
它位于“触发器”元素的顶部(并水平居中),但是当我向上移动鼠标时,它会下降,相反,
我做错了什么?
你正在使用bottom,不是top。
bottom
top
http://jsfiddle.net/GLZFc/2/
在您的 CSS 作业中将“底部:”更改为“顶部:”。
http://jsfiddle.net/GLZFc/1/
.find("span").andSelf()我还通过添加到 fadeIn 和 fadeOut 方法解决了您关于非褪色边框的问题。这将显式淡出 DIV 中的所有“span”标签,尽管老实说我不明白为什么它是必要的(这可能是一个 jQuery 错误):
.find("span").andSelf()
http://jsfiddle.net/GLZFc/21/