Changes

Jump to navigation Jump to search
1,389 bytes added ,  05:23, 18 June 2021
no edit summary
Line 10: Line 10:  
} );
 
} );
    +
//hover
 +
 +
$('.fc-img').mouseenter(function(){
 +
  $(this).parent().css('background','rgba(255, 255, 255, 0.9)')
 +
})
 +
 +
$('.fc-img').parent().mouseenter(function(){
 +
  $(this).css('background','rgba(255, 255, 255, 0.9)')
 +
})
 +
 +
 +
$('.fc-img').mouseleave(function(){
 +
  $(this).parent().css('background','none')
 +
})
 +
 +
$('.fc-img').parent().mouseleave(function(){
 +
  $(this).css('background','none')
 +
})
 +
 +
var imageList = $('.fc-img').children().children();
 +
console.log(imageList);
 +
var name;
 +
for (var i = 0; i<imageList.length; i++){
 +
  var w = imageList[i].dataset.fileWidth;
 +
  var h = imageList[i].dataset.fileHeight
 +
  if(w-h>0){
 +
    name = imageList[i].className
 +
    $('.'+name).css('height','100%');
 +
    $('.'+name).css('max-width','none');
 +
  }
 +
 +
console.log(imageList[i].dataset.fileWidth+","+imageList[i].dataset.fileHeight);
 +
 +
}
 +
         
 +
 +
           
    
mw.loader.using( 'mediawiki.api', function () {  
 
mw.loader.using( 'mediawiki.api', function () {  
 +
var random;
 
var params = {
 
var params = {
 
action: 'query',
 
action: 'query',
Line 27: Line 65:  
console.log( randoms[ r ].title);
 
console.log( randoms[ r ].title);
 
}
 
}
 +
 +
        random = randoms[0].title;
 +
       
 
         var randomString = "<a href='http://lifeafterbob.wiki/view/"+randoms[0].title+"'>"+randoms[0].title+"</a>"
 
         var randomString = "<a href='http://lifeafterbob.wiki/view/"+randoms[0].title+"'>"+randoms[0].title+"</a>"
 
         $("#randompage").append(randomString);
 
         $("#randompage").append(randomString);
 +
          var newparams = {
 +
action: 'parse',
 +
page: randoms[0].title,
 +
        section:0,
 +
format: 'json'
 +
}, api = new mw.Api();
 +
 +
api.get(newparams).done(function(data){
 +
 +
            var markup = data.parse.text["*"];
    +
var cleanup = markup.replace(/<(.|\n)*?>/g, '');
 +
arr = cleanup.split("\n");
 +
var filtered = arr.filter(function(entry) { return entry.trim() != ''; });
 +
var excerpt = filtered[filtered.length-1];
 +
console.log(filtered);
 +
  $("#randompage").append("<br>"+excerpt + "...");
 +
});
 +
});
   −
} );
        −
} )
+
});

Navigation menu