I have the following CSS:
<style type="text/css">
#list { overflow:auto; }
#list li { float:left; margin-right:10px; }
div { width:500px; height:500px; border:1px solid gray; position:relative; }
iframe { border:0 none; width:100%; height:100%; display:block; }
span.togglebutton { position:absolute; left:0; top:0; background-color:black; padding:3px; color:white; }
div.maximized { position:fixed; top:0; left:0; width:100%; height:100%; border:0 none; z-index:9; }
</style>
This is being called:
$("span.togglebutton").click(function() {
var $this = $(this);
$this.closest("li").children("div").toggleClass("maximized");
});
Essentially it maximizes/minimizes my iFrame to be fullscreen. I want to animate the maximize and minimize. How can I go about doing this?
UPDATE Here is my code using adeno's code:
$("span.togglebutton").click(function() {
var $this = $(this);
var currentText = $this.text();
var theFrame = $(this).closest("li").children("div");
if (currentText === "Maximize") {
$this.text("Minimize");
theFrame.animate({height: "100%", width: "100%"});
}
else {
$this.text("Maximize");
theFrame.animate({height: "50%", width: "50%"});
}
});
This works well, except I would like the maximize to take over the FULL screen. How can I do this?