Mudanças entre as edições de "MediaWiki:Common.js"

De Wiki Gla
Ir para navegação Ir para pesquisar
Linha 1: Linha 1:
   $(document).ready(function() {
   $(document).ready(function() {
 
  $('.test').hover(function(e) {
  const offset = {
  x: 20,
  y: 10
  }
  let href = $(this).attr('href');
  $('<img src="'+ href +'" id="bigImage" />')
  .css('left', e.pageX + offset.x)
  .css('top', e.pageY + offset.y)
  .appendTo('body')
  .hide()
  .fadeIn(500);
  }, function(){
  $('#bigImage').remove();
  });
   });
   });

Edição das 05h06min de 28 de maio de 2022

  $(document).ready(function() {
  		$('.test').hover(function(e) {
  			const offset = {
  				x: 20,
  				y: 10
  			}
  			let href = $(this).attr('href');
  			$('<img src="'+ href +'" id="bigImage" />')
  			.css('left', e.pageX + offset.x)
  			.css('top', e.pageY + offset.y)
  			.appendTo('body')
  			.hide()
  			.fadeIn(500);
  			}, function(){
  				$('#bigImage').remove();
  			});
  });