Quantcast
Channel: Lecciones Prácticas » jquery
Viewing all articles
Browse latest Browse all 8

DeepZoom & SEADragon (III)

$
0
0

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 :)

  • First, open your seadragon-branded.js (in my examples it is located under ajax/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! ;)


Viewing all articles
Browse latest Browse all 8

Trending Articles