I'm using CSS3 transitions like this:
if( pop.attr('status') == 'visible' ) {
pop.attr('status', 'hidden')
// pop transition - class of "pop" was added when showing the element
.addClass('reverse out')
.hide('fast')
}
// clean up pop() transition
window.setTimeout( function() {
pop.removeClass('reverse out pop');
}, 350);
Question:
Is there a way to handle visiblity through the status attribute AND STILL have the CSS3 transition? I'd rather use some CSS rule like so:
pop[status="hidden"] { display: none; }
pop[status="visible"] { display: block; }
than using hide() and show(), because I'm sometimes ending up having visible elements with status set to hidden, which fails my script
Using only status to determine visiblity thus makes more sense (and less confusion) for me.
Thanks for some input!
EDIT:
I'm showing the element like this:
pop.attr('status','visible')
// pop() transition
.addClass('ui-panel-active pop in')
.show('fast')
// clean up pop transition
window.setTimeout( function() {
$popPanel.removeClass('in');
}, 350);
Status is an attribute I assign to the element to monitor whether it's visible or not. I'm using the CSS3 transitions from Jquery Mobile. Let me know if should also post these.
Thanks for help.
EDIT 2: Here is a jsfiddle - http://jsfiddle.net/hDGVZ/9/
statusis a real attribute? I've never heard of it and can't find any reference. Also, how is a transition (interpolation) supposed to take place between two binary (on/off) states? Usually you'd use theopacityCSS property or similar. – Dagg Nabbit Mar 18 '12 at 15:51