Lines Matching refs:css

2905 			this.css = {};
2906 this.css.cs = {}; // Holds the css selector strings
2907 this.css.jq = {}; // Holds jQuery selectors. ie., $(css.cs.method)
3046 this.internal.poster.jq.css({'width': this.status.width, 'height': this.status.height});
3134 if(this.css.jq.noSolution.length) {
3135 this.css.jq.noSolution.show();
3138 if(this.css.jq.noSolution.length) {
3139 this.css.jq.noSolution.hide();
3218 this.internal.video.jq.css({'width': this.status.width, 'height': this.status.height});
3220 …this.internal.video.jq.css({'width':'0px', 'height':'0px'}); // Using size 0x0 since a .hide() cau…
3250 if(this.css.jq.videoPlay.length) {
3251 this.css.jq.videoPlay.hide();
3265 if(this.css.jq.currentTime.length) {
3266 this.css.jq.currentTime.text("");
3268 if(this.css.jq.duration.length) {
3269 this.css.jq.duration.text("");
3272 $.each(this.css.jq, function(fn, jq) {
3374 this.internal.video.jq.css({'width': this.status.width, 'height': this.status.height});
3377 this.internal.video.jq.css({'width': '0px', 'height': '0px'});
3520 self.internal.video.jq.css({'width':'0px', 'height':'0px'});
3525 if(self.css.jq.videoPlay.length) {
3526 self.css.jq.videoPlay.show();
3599 self.internal.video.jq.css({'width':'0px', 'height':'0px'});
3604 if(self.css.jq.videoPlay.length) {
3605 self.css.jq.videoPlay.show();
3714 …this.internal.flash.jq.css({'width':'0px', 'height':'0px'}); // Once Flash generates the ready eve…
3787 this.internal.flash.jq.css({'width':'0px', 'height':'0px'});
3792 if(this.css.jq.videoPlay.length && this.status.video) {
3793 this.css.jq.videoPlay.show();
3866 if(this.css.jq.play.length && this.css.jq.pause.length) {
3868 this.css.jq.play.hide();
3869 this.css.jq.pause.show();
3871 this.css.jq.play.show();
3872 this.css.jq.pause.hide();
3875 if(this.css.jq.restoreScreen.length && this.css.jq.fullScreen.length) {
3877 this.css.jq.fullScreen.hide();
3878 this.css.jq.restoreScreen.hide();
3880 this.css.jq.fullScreen.hide();
3881 this.css.jq.restoreScreen.show();
3883 this.css.jq.fullScreen.show();
3884 this.css.jq.restoreScreen.hide();
3887 if(this.css.jq.repeat.length && this.css.jq.repeatOff.length) {
3889 this.css.jq.repeat.hide();
3890 this.css.jq.repeatOff.show();
3892 this.css.jq.repeat.show();
3893 this.css.jq.repeatOff.hide();
3898 if(this.css.jq.seekBar.length) {
3899 this.css.jq.seekBar.width(this.status.seekPercent+"%");
3901 if(this.css.jq.playBar.length) {
3903 this.css.jq.playBar.stop().animate({
3907 this.css.jq.playBar.width(this.status.currentPercentRelative+"%");
3911 if(this.css.jq.currentTime.length) {
3913 if(currentTimeText !== this.css.jq.currentTime.text()) {
3914 this.css.jq.currentTime.text(this._convertTime(this.status.currentTime));
3920 if(this.css.jq.duration.length) {
3934 if(durationText !== this.css.jq.duration.text()) {
3935 this.css.jq.duration.text(durationText);
3941 if(this.css.jq.seekBar.length) {
3942 this.css.jq.seekBar.addClass("jp-seeking-bg");
3947 if(this.css.jq.seekBar.length) {
3948 this.css.jq.seekBar.removeClass("jp-seeking-bg");
4031 if(self.css.jq.videoPlay.length) {
4032 self.css.jq.videoPlay.show();
4054 if(self.css.jq.videoPlay.length) {
4055 self.css.jq.videoPlay.hide();
4083 if(this.css.jq.title.length) {
4084 this.css.jq.title.html(media.title);
4299 if(this.css.jq.mute.length && this.css.jq.unmute.length) {
4301 this.css.jq.mute.hide();
4302 this.css.jq.unmute.hide();
4304 this.css.jq.mute.hide();
4305 this.css.jq.unmute.show();
4307 this.css.jq.mute.show();
4308 this.css.jq.unmute.hide();
4342 if(this.css.jq.volumeBar.length) {
4368 if(this.css.jq.volumeBar.length) {
4369 this.css.jq.volumeBar.hide();
4371 if(this.css.jq.volumeBarValue.length) {
4372 this.css.jq.volumeBarValue.hide();
4374 if(this.css.jq.volumeMax.length) {
4375 this.css.jq.volumeMax.hide();
4379 if(this.css.jq.volumeBar.length) {
4380 this.css.jq.volumeBar.show();
4382 if(this.css.jq.volumeBarValue.length) {
4383 this.css.jq.volumeBarValue.show();
4384 this.css.jq.volumeBarValue[this.options.verticalVolume ? "height" : "width"]((v*100)+"%");
4386 if(this.css.jq.volumeMax.length) {
4387 this.css.jq.volumeMax.show();
4426 if(this.css.jq[fn] && this.css.jq[fn].length) {
4427 this.css.jq[fn].unbind(".jPlayer");
4430 this.css.cs[fn] = this.options.cssSelectorAncestor + " " + cssSel;
4433 this.css.jq[fn] = $(this.css.cs[fn]);
4435 …this.css.jq[fn] = []; // To comply with the css.jq[fn].length check before its use. As of jQuery 1…
4438 if(this.css.jq[fn].length && this[fn]) {
4448 this.css.jq[fn].bind("click.jPlayer", handler); // Using jPlayer namespace
4451 …if(cssSel && this.css.jq[fn].length !== 1) { // So empty strings do not generate the warning. ie.,…
4454 context: this.css.cs[fn],
4455 …message: $.jPlayer.warningMsg.CSS_SELECTOR_COUNT + this.css.jq[fn].length + " found for " + fn + "…
4485 if(this.css.jq.seekBar.length) {
4499 if(this.css.jq.playbackRateBar.length) {
4521 if(this.css.jq.playbackRateBar.length) {
4522 this.css.jq.playbackRateBar.show();
4524 if(this.css.jq.playbackRateBarValue.length) {
4525 this.css.jq.playbackRateBarValue.show();
4526 …this.css.jq.playbackRateBarValue[this.options.verticalPlaybackRate ? "height" : "width"]((ratio*10…
4529 if(this.css.jq.playbackRateBar.length) {
4530 this.css.jq.playbackRateBar.hide();
4532 if(this.css.jq.playbackRateBarValue.length) {
4533 this.css.jq.playbackRateBarValue.hide();
4791 this.element.css({'width': this.status.width, 'height': this.status.height});
4805 this.internal.poster.jq.css({'width': this.status.width, 'height': this.status.height});
4809 this.internal.video.jq.css({'width': this.status.width, 'height': this.status.height});
4812 this.internal.flash.jq.css({'width': this.status.width, 'height': this.status.height});
4838 self.css.jq.gui.fadeIn(self.options.autohide.fadeIn, function() {
4841 self.css.jq.gui.fadeOut(self.options.autohide.fadeOut);
4847 if(this.css.jq.gui.length) {
4851 this.css.jq.gui.stop(true, true);
4859 this.css.jq.gui.unbind(namespace);
4864 this.css.jq.gui.bind(eventType, handler);
4865 this.css.jq.gui.hide();
4867 this.css.jq.gui.show();
4870 this.css.jq.gui.hide();
4995 this.internal.video.jq.css({'width':'0px', 'height':'0px'});
5125 if(this.css.jq.videoPlay.length) {
5126 this.css.jq.videoPlay.hide();
5130 this.internal.video.jq.css({'width': this.status.width, 'height': this.status.height});
5295 …this.internal.flash.jq.css({'width':'0px', 'height':'0px'}); // Must do via CSS as setting attr() …
5336 if(this.css.jq.videoPlay.length) {
5337 this.css.jq.videoPlay.hide();
5341 this.internal.flash.jq.css({'width': this.status.width, 'height': this.status.height});
5422 this.internal.flash.jq.css({'width':'1px', 'height':'1px'});