- // ==UserScript==
- // @name Smooth
- // @namespace http://adamsmith.as/userscripts
- // @description A smooth zooming enhancement for Google Maps
- // @include http://maps.google.com/*
- // ==/UserScript==
- (function() {
- var mapnode = document.getElementById("map");
- var i=0;
- setInterval(function(){
- mapnode.style["-moz-opacity"] = (i++)/100;
- },100);
- })();
Raw Paste