-1
I developed a title system using jQuery and CSS, it is very good and works when I call the tag <title>
. But I am facing 2 bugs that I am not able to solve.
first: When I put a very large amount of title on a page, it stops working, in the example I’m posting I created a lot of input. You can see that at first the title works, but at last it doesn’t work anymore.
2nd: when I click on the first input the title leaves the page, I wanted it to move and always be visible.
Good follows my code, already I thank all.
$('[title]').hover(function () {
// Hover over code
var title = $(this).attr('title');
$(this).data('tipText', title).removeAttr('title');
$('<div class="tooltip"></div>')
.text(title)
.appendTo('body')
.fadeIn('slow');
}, function () {
// Hover out code
$(this).attr('title', $(this).data('tipText'));
$('.tooltip').remove();
}).mousemove(function (e) {
var mousex = e.pageX + -50; //Get X coordinates
var mousey = e.pageY + -60; //Get Y coordinates
$('.tooltip')
.css({top: mousey, left: mousex});
});
.tooltip {
display:none;
position:fixed;
background-color:#484848;
border-radius:2px;
padding:10px;
color:#ffffff;
z-index:9999;
border-width: 1px;
border-style: solid;
border-color: #ffffff;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
<input name='nome' title="Teste do title"><br>
How did you solve the locking problem? And there is one more problem. This way you made the title disappear when it is at the bottom of the page, I wonder if there is any way to make it change the position according to the page. I mean, if I go to the bottom of the page it’s on top of the mouse, and if I go to the top of the page it goes down.
– Hugo Borges
It wasn’t locking, it turns out the top was getting too big and the tooltip was getting too low. In his example it is only going down gradually that you can see him going much lower because of the top. I will see a way to improve this.
– André Vicente
OK I’m waiting for your reply
– Hugo Borges
friend gave time to look at the code?
– Hugo Borges