Lines Matching refs:css

860 			this.css = {};
861 this.css.cs = {}; // Holds the css selector strings
862 this.css.jq = {}; // Holds jQuery selectors. ie., $(css.cs.method)
1001 this.internal.poster.jq.css({'width': this.status.width, 'height': this.status.height});
1089 if(this.css.jq.noSolution.length) {
1090 this.css.jq.noSolution.show();
1093 if(this.css.jq.noSolution.length) {
1094 this.css.jq.noSolution.hide();
1173 this.internal.video.jq.css({'width': this.status.width, 'height': this.status.height});
1175 …this.internal.video.jq.css({'width':'0px', 'height':'0px'}); // Using size 0x0 since a .hide() cau…
1205 if(this.css.jq.videoPlay.length) {
1206 this.css.jq.videoPlay.hide();
1220 if(this.css.jq.currentTime.length) {
1221 this.css.jq.currentTime.text("");
1223 if(this.css.jq.duration.length) {
1224 this.css.jq.duration.text("");
1227 $.each(this.css.jq, function(fn, jq) {
1329 this.internal.video.jq.css({'width': this.status.width, 'height': this.status.height});
1332 this.internal.video.jq.css({'width': '0px', 'height': '0px'});
1475 self.internal.video.jq.css({'width':'0px', 'height':'0px'});
1480 if(self.css.jq.videoPlay.length) {
1481 self.css.jq.videoPlay.show();
1554 self.internal.video.jq.css({'width':'0px', 'height':'0px'});
1559 if(self.css.jq.videoPlay.length) {
1560 self.css.jq.videoPlay.show();
1669 …this.internal.flash.jq.css({'width':'0px', 'height':'0px'}); // Once Flash generates the ready eve…
1742 this.internal.flash.jq.css({'width':'0px', 'height':'0px'});
1747 if(this.css.jq.videoPlay.length && this.status.video) {
1748 this.css.jq.videoPlay.show();
1821 if(this.css.jq.play.length && this.css.jq.pause.length) {
1823 this.css.jq.play.hide();
1824 this.css.jq.pause.show();
1826 this.css.jq.play.show();
1827 this.css.jq.pause.hide();
1830 if(this.css.jq.restoreScreen.length && this.css.jq.fullScreen.length) {
1832 this.css.jq.fullScreen.hide();
1833 this.css.jq.restoreScreen.hide();
1835 this.css.jq.fullScreen.hide();
1836 this.css.jq.restoreScreen.show();
1838 this.css.jq.fullScreen.show();
1839 this.css.jq.restoreScreen.hide();
1842 if(this.css.jq.repeat.length && this.css.jq.repeatOff.length) {
1844 this.css.jq.repeat.hide();
1845 this.css.jq.repeatOff.show();
1847 this.css.jq.repeat.show();
1848 this.css.jq.repeatOff.hide();
1853 if(this.css.jq.seekBar.length) {
1854 this.css.jq.seekBar.width(this.status.seekPercent+"%");
1856 if(this.css.jq.playBar.length) {
1858 this.css.jq.playBar.stop().animate({
1862 this.css.jq.playBar.width(this.status.currentPercentRelative+"%");
1866 if(this.css.jq.currentTime.length) {
1868 if(currentTimeText !== this.css.jq.currentTime.text()) {
1869 this.css.jq.currentTime.text(this._convertTime(this.status.currentTime));
1875 if(this.css.jq.duration.length) {
1889 if(durationText !== this.css.jq.duration.text()) {
1890 this.css.jq.duration.text(durationText);
1896 if(this.css.jq.seekBar.length) {
1897 this.css.jq.seekBar.addClass("jp-seeking-bg");
1902 if(this.css.jq.seekBar.length) {
1903 this.css.jq.seekBar.removeClass("jp-seeking-bg");
1986 if(self.css.jq.videoPlay.length) {
1987 self.css.jq.videoPlay.show();
2009 if(self.css.jq.videoPlay.length) {
2010 self.css.jq.videoPlay.hide();
2038 if(this.css.jq.title.length) {
2039 this.css.jq.title.html(media.title);
2254 if(this.css.jq.mute.length && this.css.jq.unmute.length) {
2256 this.css.jq.mute.hide();
2257 this.css.jq.unmute.hide();
2259 this.css.jq.mute.hide();
2260 this.css.jq.unmute.show();
2262 this.css.jq.mute.show();
2263 this.css.jq.unmute.hide();
2297 if(this.css.jq.volumeBar.length) {
2323 if(this.css.jq.volumeBar.length) {
2324 this.css.jq.volumeBar.hide();
2326 if(this.css.jq.volumeBarValue.length) {
2327 this.css.jq.volumeBarValue.hide();
2329 if(this.css.jq.volumeMax.length) {
2330 this.css.jq.volumeMax.hide();
2334 if(this.css.jq.volumeBar.length) {
2335 this.css.jq.volumeBar.show();
2337 if(this.css.jq.volumeBarValue.length) {
2338 this.css.jq.volumeBarValue.show();
2339 this.css.jq.volumeBarValue[this.options.verticalVolume ? "height" : "width"]((v*100)+"%");
2341 if(this.css.jq.volumeMax.length) {
2342 this.css.jq.volumeMax.show();
2381 if(this.css.jq[fn] && this.css.jq[fn].length) {
2382 this.css.jq[fn].unbind(".jPlayer");
2385 this.css.cs[fn] = this.options.cssSelectorAncestor + " " + cssSel;
2388 this.css.jq[fn] = $(this.css.cs[fn]);
2390 …this.css.jq[fn] = []; // To comply with the css.jq[fn].length check before its use. As of jQuery 1…
2393 if(this.css.jq[fn].length && this[fn]) {
2403 this.css.jq[fn].bind("click.jPlayer", handler); // Using jPlayer namespace
2406 …if(cssSel && this.css.jq[fn].length !== 1) { // So empty strings do not generate the warning. ie.,…
2409 context: this.css.cs[fn],
2410 …message: $.jPlayer.warningMsg.CSS_SELECTOR_COUNT + this.css.jq[fn].length + " found for " + fn + "…
2440 if(this.css.jq.seekBar.length) {
2454 if(this.css.jq.playbackRateBar.length) {
2476 if(this.css.jq.playbackRateBar.length) {
2477 this.css.jq.playbackRateBar.show();
2479 if(this.css.jq.playbackRateBarValue.length) {
2480 this.css.jq.playbackRateBarValue.show();
2481 …this.css.jq.playbackRateBarValue[this.options.verticalPlaybackRate ? "height" : "width"]((ratio*10…
2484 if(this.css.jq.playbackRateBar.length) {
2485 this.css.jq.playbackRateBar.hide();
2487 if(this.css.jq.playbackRateBarValue.length) {
2488 this.css.jq.playbackRateBarValue.hide();
2746 this.element.css({'width': this.status.width, 'height': this.status.height});
2760 this.internal.poster.jq.css({'width': this.status.width, 'height': this.status.height});
2764 this.internal.video.jq.css({'width': this.status.width, 'height': this.status.height});
2767 this.internal.flash.jq.css({'width': this.status.width, 'height': this.status.height});
2793 self.css.jq.gui.fadeIn(self.options.autohide.fadeIn, function() {
2796 self.css.jq.gui.fadeOut(self.options.autohide.fadeOut);
2802 if(this.css.jq.gui.length) {
2806 this.css.jq.gui.stop(true, true);
2814 this.css.jq.gui.unbind(namespace);
2819 this.css.jq.gui.bind(eventType, handler);
2820 this.css.jq.gui.hide();
2822 this.css.jq.gui.show();
2825 this.css.jq.gui.hide();
2950 this.internal.video.jq.css({'width':'0px', 'height':'0px'});
3080 if(this.css.jq.videoPlay.length) {
3081 this.css.jq.videoPlay.hide();
3085 this.internal.video.jq.css({'width': this.status.width, 'height': this.status.height});
3250 …this.internal.flash.jq.css({'width':'0px', 'height':'0px'}); // Must do via CSS as setting attr() …
3291 if(this.css.jq.videoPlay.length) {
3292 this.css.jq.videoPlay.hide();
3296 this.internal.flash.jq.css({'width': this.status.width, 'height': this.status.height});
3377 this.internal.flash.jq.css({'width':'1px', 'height':'1px'});