热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

没有jQuery的纯CSS工具提示[重复]-PureCSStooltipwithoutjQuery[duplicate]

PossibleDuplicate:HowcanIcreatea“tooltiptail”usingpureCSS?可能的重复:如何使用纯CSS创建“工具提示尾”?

Possible Duplicate:
How can I create a “tooltip tail” using pure CSS?

可能的重复:如何使用纯CSS创建“工具提示尾”?

I would like to create a Facebook/ Twitter style tooltip (that thing when you hover over people's profiles and there's a short summary of their profile). I came across a lot of tutorials but they use jQuery. Is there a way to do this is CSS and maybe Javascript?

我想创建一个Facebook/ Twitter风格的工具提示(当你在人们的个人资料上徘徊时,你会看到一个简短的概要)。我遇到了很多教程,但是他们使用的是jQuery。有没有一种方法可以做到这一点是CSS或者Javascript?

+I'd like for this to work on images as well.

+我也想让这个在图像上工作。

Thanks

谢谢

1 个解决方案

#1


5  

You can do it with pure css

你可以用纯css来做

You can use the hover pseudo class to trigger it.

您可以使用悬浮伪类来触发它。

Here is a general concept that should get you started

这里有一个基本的概念可以让你开始

div.profile-on-hover { display: none }
a:hover + .profile-on-hover { display: block }

hover me
bunch of stuff

http://jsfiddle.net/AsKpv/

http://jsfiddle.net/AsKpv/

the div will need to follow the a tag for the '+' to work with CSS

div需要跟随“+”的a标签来使用CSS

if you want to make it snazzy you could use opacity: 0 and opacity:1 with a css3 transition to make it fade in as well.

如果你想让它更时髦,你可以使用不透明度:0和不透明度:1与css3过渡,使它也淡出。

good luck

祝你好运


推荐阅读
author-avatar
掩飾獨殇_389
这个家伙很懒,什么也没留下!
Tags | 热门标签
RankList | 热门文章
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有