Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
$(document).ready(function() {
  $(".mw-wiki-logo").css("background-image", "none");
  div = $("<div></div>").css("position", "fixed").css("top", 0).css("left", 0);
  video = $("<video></video>").attr("loop", true).attr("muted", true).attr("autoplay", true).css("width", "160px").css("height", "160px");
  source = $("<source>").attr("type", "video/webm").attr("src", "//upload.wikimedia.org/wikipedia/commons/6/60/Wikipedia_logo_puzzle_globe_spins_horizontally_and_vertically%2C_revealing_the_contents_of_all_of_its_puzzle_pieces_%284K_resolution%29_%28VP9%29.webm");
  video.append(source);
  $(".mw-wiki-logo").append(video);
});