Я работаю над подсказкой с jQuery, но он не работает. Не могли бы вы мне помочь? Я не понимаю, почему это не работает хорошо ... < /p>
Спасибо !! < /p>
.tooltip{
padding:5px 10px;
background-color:#e5f4fe;
border:#5a5959 1px solid;
position:absolute;
z-index:9999;
color:#0c0c0c;
font-size:0.688em;
min-width:100px;
min-height:50px;
}
.tipBody {
background-color:#e5f4fe;
padding:2px;
}
< /code>
html: < /p>
Print results
< /code>
jQuery: < /p>
$(document).ready(function() {
//Select all anchor tag with rel set to tooltip
$('a[rel=tooltip]').mouseover(function(e) {
//Grab the title attribute's value and assign it to a variable
var tip = $(this).attr('title');
//Remove the title attribute's to avoid the native tooltip from the browser
$(this).attr('title','');
//Append the tooltip template and its value
$(this).append('' + tip + '');
//Show the tooltip with faceIn effect
$('.tooltip').fadeIn('500');
$('.tooltip').fadeTo('10',0.9);
}).mousemove(function(e) {
//Keep changing the X and Y axis for the tooltip, thus, the tooltip move along with the mouse
$('.tooltip').css('top', e.pageY + 10 );
$('.tooltip').css('left', e.pageX + 20 );
}).mouseout(function() {
//Put back the title attribute's value
$(this).attr('title',$('.tipBody').html());
//Remove the appended tooltip template
$(this).children('div.tooltip').remove();
});
});
Подробнее здесь: https://stackoverflow.com/questions/662 ... tip-jquery
Подсказка (jQuery) ⇐ Jquery
Программирование на jquery
1746255028
Anonymous
Я работаю над подсказкой с jQuery, но он не работает. Не могли бы вы мне помочь? Я не понимаю, почему это не работает хорошо ... < /p>
Спасибо !! < /p>
.tooltip{
padding:5px 10px;
background-color:#e5f4fe;
border:#5a5959 1px solid;
position:absolute;
z-index:9999;
color:#0c0c0c;
font-size:0.688em;
min-width:100px;
min-height:50px;
}
.tipBody {
background-color:#e5f4fe;
padding:2px;
}
< /code>
html: < /p>
[url=#]Print results[/url]
< /code>
jQuery: < /p>
$(document).ready(function() {
//Select all anchor tag with rel set to tooltip
$('a[rel=tooltip]').mouseover(function(e) {
//Grab the title attribute's value and assign it to a variable
var tip = $(this).attr('title');
//Remove the title attribute's to avoid the native tooltip from the browser
$(this).attr('title','');
//Append the tooltip template and its value
$(this).append('' + tip + '');
//Show the tooltip with faceIn effect
$('.tooltip').fadeIn('500');
$('.tooltip').fadeTo('10',0.9);
}).mousemove(function(e) {
//Keep changing the X and Y axis for the tooltip, thus, the tooltip move along with the mouse
$('.tooltip').css('top', e.pageY + 10 );
$('.tooltip').css('left', e.pageX + 20 );
}).mouseout(function() {
//Put back the title attribute's value
$(this).attr('title',$('.tipBody').html());
//Remove the appended tooltip template
$(this).children('div.tooltip').remove();
});
});
Подробнее здесь: [url]https://stackoverflow.com/questions/6629294/tooltip-jquery[/url]
Ответить
1 сообщение
• Страница 1 из 1
Перейти
- Кемерово-IT
- ↳ Javascript
- ↳ C#
- ↳ JAVA
- ↳ Elasticsearch aggregation
- ↳ Python
- ↳ Php
- ↳ Android
- ↳ Html
- ↳ Jquery
- ↳ C++
- ↳ IOS
- ↳ CSS
- ↳ Excel
- ↳ Linux
- ↳ Apache
- ↳ MySql
- Детский мир
- Для души
- ↳ Музыкальные инструменты даром
- ↳ Печатная продукция даром
- Внешняя красота и здоровье
- ↳ Одежда и обувь для взрослых даром
- ↳ Товары для здоровья
- ↳ Физкультура и спорт
- Техника - даром!
- ↳ Автомобилистам
- ↳ Компьютерная техника
- ↳ Плиты: газовые и электрические
- ↳ Холодильники
- ↳ Стиральные машины
- ↳ Телевизоры
- ↳ Телефоны, смартфоны, плашеты
- ↳ Швейные машинки
- ↳ Прочая электроника и техника
- ↳ Фототехника
- Ремонт и интерьер
- ↳ Стройматериалы, инструмент
- ↳ Мебель и предметы интерьера даром
- ↳ Cантехника
- Другие темы
- ↳ Разное даром
- ↳ Давай меняться!
- ↳ Отдам\возьму за копеечку
- ↳ Работа и подработка в Кемерове
- ↳ Давай с тобой поговорим...
Мобильная версия