These days we were talking about DeepZoom, SeaDragon and jCarousel. Refer to
[1] DeepZoom & SEADragon part one and
[2] DeepZoom & SEADragon part two.
How to remove the SEADragon logo from the viewer?
Well, that is REALLY simple indeed Image may be NSFW.
Clik here to view.
- First, open your
seadragon-branded.js
(in my examples it is located underajax/0.8/
. - Go to line 275. It should be something like
1
function init(){self.addControl(logoControl,Seadragon.ControlAnchor.BOTTOM_LEFT);logoControl.style.marginLeft="4px";logoControl.style.marginBottom="4px";self.addEventListener("open",introAnimationSetup);}
- Just comment the adding of the
logoControl
. The final code should be like this:
1
function init(){/*self.addControl(logoControl,Seadragon.ControlAnchor.BOTTOM_LEFT);logoControl.style.marginLeft="4px";logoControl.style.marginBottom="4px";self.addEventListener("open",introAnimationSetup);*/}
That’s all folks! Image may be NSFW.
Clik here to view.