I have a div on my site which I animate to full screen on button click using .animate() on width/height. Something like this:
$('#mainc').animate({
width: winw,
height: winh,
"margin-top": 0
});
Up until now I have been setting the width/height of the div using jquery on page load based on viewport size so I could calculate the required sizes of the div each time it was toggled on/off fullscreen based on the viewport size.
I am now trying to alter it to use min-width/min-height css media queries rather than js. But I need to be able to retrieve the width of the current element for its current media query, how can I get this info.
HTML
<div id="content">
//content here
</div>
css
#content{
width:800px;
}
@media (min-width: 1200px) {
#content{
width:1000px;
}
}
@media (max-width: 800px) {
#content{
width:600px;
}
}
So for example, on a 1200px wide screen my container div is loaded at 1000px wide, I click fullscreen button and its now 1200px wide. If I resize the browser whilst fullscreen, js takes care of it. But now the user clicks out of fullscreen so I need to get the non fullscreen size of the div for the current media query. I am also concerned about whether the media query will take the div out of fullscreen mode on resize. Will this happen or will it be overridden by my element styling, If it will how can I stop this?