Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name миста
- // @namespace http://www.forum.mista.ru
- // @include http://www.forum.mista.ru/topic.php?id=*
- // @version 1
- // @grant none
- // ==/UserScript==
- $(document).ready(function() {
- // =================================================
- // Окошко для показа сообщений
- $('body').append("<div id='popupWin'></div>");
- $('#popupWin').css({
- 'background-color': '#FFFFCC',
- 'border': '1px solid #CCCCCC',
- 'border-radius': '8px',
- 'font': '10pt Tahoma',
- 'padding':'10pt',
- 'left': '50%',
- 'position': 'fixed',
- 'top': '220px',
- 'z-index': '1000',
- 'display':'none',
- 'box-shadow': '0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(82, 168, 236, 0.6)'
- });
- // Закрытие по щелчку на блоке
- $('#popupWin').live('click',function(){
- $(this).fadeOut(200);
- });
- // примерно так получается текст
- $('a.interlink').removeAttr('href');
- $('a.interlink').css('cursor','pointer');
- $('a.interlink').live('mouseover', function(e){
- var msgid = $(this).data('rel');
- var offset = $(this).offset();
- var relativeX = e.pageX - $(window).scrollLeft()+15;
- var relativeY = e.pageY - $(window).scrollTop()+15;
- var msgtext = "<b>"+msgid+ "</b><br/>" + $(msgid).text();
- $('#popupWin').css({'top':relativeY+'px','left':relativeX+'px'});
- $('#popupWin').html(msgtext);
- $('#popupWin').fadeIn(200);
- }).live('mouseout', function(){
- $('#popupWin').fadeOut(200);
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement