Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I want to show a tooltip under the mousecursor. Since JQueryMobile doesn't have any widget for this, I use the Popup widget (which comes very close).

When showing the popup, I can specify X and Y coordinates. But the problem is it centers the popup based on X and Y. And I want to display it on the right-side of the mousecursor, not right under it (because that makes the text hard to read because the cursor is over it).

How can I show a popup this way? The only thing I can think of is measuring the width of the popup element, and correct the coordinates based on the width/height of the popup. But this seems impossible, because I can only measure the actual width after the popup is rendered to the screen, and I need to specify X/Y before the popup is showed. Seems like a catch 22 situation?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
185 views
Welcome To Ask or Share your Answers For Others

1 Answer

As discussed in the comments under the question, a native/vanilla Javascript tooltip, that is fully customizable. And intuitive, even if I say so myself. Here is the live demo: http://jsbin.com/nerul/3/edit?html,output.

And this is the code:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Light-weight Tooltip by FC</title>
<style>
html {
    font-size: 62.5%;
}
body {
    font: normal 1.3em Verdana;
    background-color: white; /* just for the JSBin demo */
}
h2 {
    text-align: center;
    margin-bottom: 2em;
}
span.tool {
    position: relative;
    display: inline-block;
    border-bottom: 1px dashed black;
}
span.tool:hover {
    cursor: help;
}
span.tip {
    position: absolute;
    bottom: 20px;
    left: 0px;
    display: block;
    width: auto;
    white-space: nowrap;
    font-size: .9em;
    border: 0px solid black; /* change as desired */
    border-radius: 6px;
    padding: 1px 5px;
    background: #eee;
    background: linear-gradient(top, #eee, #ccc);
    background: -moz-linear-gradient(top, #eee, #ccc);
    background: -o-linear-gradient(top, #eee, #ccc);
    background: -webkit-linear-gradient(top, #eee, #ccc);
    background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#ccc));
    background: -ms-linear-gradient(top, #eee, #ccc);
    filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#eeeeee,EndColorStr=#cccccc);
    zoom: 1;
    visibility: hidden;
}
</style>
</head>
<body>

    <h2>Light-weight Tooltip by FC</h2>

    <p>The <span class="tool">WHO<span class="tip">World Health Organization</span></span> was established in 1948.</p>

    <p>
        It is part of the
        <span class="tool">UN
            <span class="tip">United Nations, <br>the successor of the <br>League of Nations</span>
        </span>,
        which was established in 1945.
    </p>

    <hr>

    <p>Explanation and 'minds':</p>

    <ul>
        <li>The method consists of local nested spans ('tools' with 'tips' inside), positioned relative-absolute.</li>
        <li>If the same tips are to be used several times throughout the page or website, the tip spans can be populated centrally with Javascript or server-side scripting.</li>
        <li>In the current code the width of the tips is set to <i>auto</i>, and controlled with &lt;br&gt;s in the tip text. Change to fixed width as desired.</li>
        <li>With the current code tablet users must tap (= <i>onclick</i>) rather than press-hold (= <i>onmousedown</i>). It is assumed that that is the intuitive thing most tablet users do, but it can be changed to press-hold.</li>
        <li>The HTML is valid and the code also works in IE8.</li>
        <li>It is said that <i>getElementsByClassName(class)</i> returns a dynamic node list, whereas <i>querySelectorAll(.class)</i> would return a static one. That would make the latter unsuited for dynamically updated elements/sections. Also, it is said to be slower/require more CPU power than the first. However, <i>querySelectorAll(.class)</i> is supported by IE8 (not 7). Mind the dot.</li>
        <li>For the sake of completeness: IE9 does not form a border-radius when the element has no declared border, or a border-width of 0.</li>
    </ul>

<script>
// Script to make IE8 support getElementsByClassName:
if (!document.getElementsByClassName) {
    document.getElementsByClassName = function(theClass) {
        var elemArray = [];
        var elems = this.getElementsByTagName('*');
        for (var i=0; i<elems.length; i++) {
            var allClasses = elems[i].className;
            var classRegex = new RegExp('^('+theClass+')$|(\s'+theClass+'\b)');
            // pattern demo on http://codepen.io/anon/pen/Hhswl?editors=100
            if (classRegex.test(allClasses) == true)
                elemArray.push(elems[i]);
        }
        return elemArray;
    }
}

var tools = document.getElementsByClassName('tool');
for (var i=0; i<tools.length; i++) {
    var tool = tools[i];
    if ('ontouchstart' in window || window.navigator.msPointerEnabled) {
        tool.onclick = function() {
            if (this.children[0].style.visibility == '' || this.children[0].style.visibility == 'hidden')
                this.children[0].style.visibility = 'visible';
            else this.children[0].style.visibility = 'hidden';
        }
    }
    else {
        tool.onmouseover = function() {
            this.children[0].style.visibility = 'visible';
        }
        tool.onmouseout = function() {
            this.children[0].style.visibility = 'hidden';
        }
    }
}
</script>
</body>
</html>

.
With your reputation, matters should be fully self-explanatory. If not, just let me know.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...