最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I open a small window when the user hovers over some text? - Stack Overflow

programmeradmin1浏览0评论

I am preparing a web page with more data that can possibly be shown without making the page really cumbersome. I am considering different way to do this. One way would be to have the extra data magically appear on a small window when the user hovers over a particular part of text.Yahoo! Answers does something like that when you hover over a user. But I suppose that must be way to plex to code (for my level).

SO I am looking for a simple way to get a small pop up window to appear next to the mouse pointer when the user hovers on a particularly interesting text. The window should disappear automatically once the user leaves the text. On this topic I have a few questions:

  • How can this be done?
  • Can it be done without using JavaScript?
  • What other solutions should I consider? (For example I have seen some web pages expand some sections, when the user hovers click on them)

I am preparing a web page with more data that can possibly be shown without making the page really cumbersome. I am considering different way to do this. One way would be to have the extra data magically appear on a small window when the user hovers over a particular part of text.Yahoo! Answers does something like that when you hover over a user. But I suppose that must be way to plex to code (for my level).

SO I am looking for a simple way to get a small pop up window to appear next to the mouse pointer when the user hovers on a particularly interesting text. The window should disappear automatically once the user leaves the text. On this topic I have a few questions:

  • How can this be done?
  • Can it be done without using JavaScript?
  • What other solutions should I consider? (For example I have seen some web pages expand some sections, when the user hovers click on them)
Share Improve this question edited Jan 24, 2014 at 15:13 munity wiki
6 revs, 4 users 56%
Pietro Speroni
Add a ment  | 

4 Answers 4

Reset to default 7

Just use a DIV to show your text, to open a pletely new window is overkill and seeing as most people have popup blockers in their browsers, the window won't even show. I suggest using JQuery (nice to start with if you are new as it will make your Javascript development WAY easier) and the JQuery Tooltip plugin found here

The prettiest solution would probably be using jQuery and the jQuery tooltip plugin, as mentioned above. If you are really keen on avoiding javascript, you can reach this goal with just the use of css:

<div id="bigdiv">
bla
<div id="tooltip">this is a bla</div>
</div>

#tooltip{
  display:none;
}
#bigdiv:hover #tooltip{
  display:block;
}

Ya this can be done using javascript.

You have to write events for mouseover and mouseout of the text element. Create a div with some styling applied and show the text inside the element as the div's innerText. Set the position of the div according to the text element.

You could also use the Yahoo! User Interface (YUI) library which is similar to jQuery. In fact this is very likely going to be what they used on the Yahoo! Answers site.

Take a look at their very useful site. http://developer.yahoo./yui/container/overlay/

发布评论

评论列表(0)

  1. 暂无评论