選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

407 行
13 KiB

  1. import { queryAll } from '../utils/util.js'
  2. import { colorToRgb, colorBrightness } from '../utils/color.js'
  3. /**
  4. * Creates and updates slide backgrounds.
  5. */
  6. export default class Backgrounds {
  7. constructor( Reveal ) {
  8. this.Reveal = Reveal;
  9. }
  10. render() {
  11. this.element = document.createElement( 'div' );
  12. this.element.className = 'backgrounds';
  13. this.Reveal.getRevealElement().appendChild( this.element );
  14. }
  15. /**
  16. * Creates the slide background elements and appends them
  17. * to the background container. One element is created per
  18. * slide no matter if the given slide has visible background.
  19. */
  20. create() {
  21. // Clear prior backgrounds
  22. this.element.innerHTML = '';
  23. this.element.classList.add( 'no-transition' );
  24. // Iterate over all horizontal slides
  25. this.Reveal.getHorizontalSlides().forEach( slideh => {
  26. let backgroundStack = this.createBackground( slideh, this.element );
  27. // Iterate over all vertical slides
  28. queryAll( slideh, 'section' ).forEach( slidev => {
  29. this.createBackground( slidev, backgroundStack );
  30. backgroundStack.classList.add( 'stack' );
  31. } );
  32. } );
  33. // Add parallax background if specified
  34. if( this.Reveal.getConfig().parallaxBackgroundImage ) {
  35. this.element.style.backgroundImage = 'url("' + this.Reveal.getConfig().parallaxBackgroundImage + '")';
  36. this.element.style.backgroundSize = this.Reveal.getConfig().parallaxBackgroundSize;
  37. this.element.style.backgroundRepeat = this.Reveal.getConfig().parallaxBackgroundRepeat;
  38. this.element.style.backgroundPosition = this.Reveal.getConfig().parallaxBackgroundPosition;
  39. // Make sure the below properties are set on the element - these properties are
  40. // needed for proper transitions to be set on the element via CSS. To remove
  41. // annoying background slide-in effect when the presentation starts, apply
  42. // these properties after short time delay
  43. setTimeout( () => {
  44. this.Reveal.getRevealElement().classList.add( 'has-parallax-background' );
  45. }, 1 );
  46. }
  47. else {
  48. this.element.style.backgroundImage = '';
  49. this.Reveal.getRevealElement().classList.remove( 'has-parallax-background' );
  50. }
  51. }
  52. /**
  53. * Creates a background for the given slide.
  54. *
  55. * @param {HTMLElement} slide
  56. * @param {HTMLElement} container The element that the background
  57. * should be appended to
  58. * @return {HTMLElement} New background div
  59. */
  60. createBackground( slide, container ) {
  61. // Main slide background element
  62. let element = document.createElement( 'div' );
  63. element.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' );
  64. // Inner background element that wraps images/videos/iframes
  65. let contentElement = document.createElement( 'div' );
  66. contentElement.className = 'slide-background-content';
  67. element.appendChild( contentElement );
  68. container.appendChild( element );
  69. slide.slideBackgroundElement = element;
  70. slide.slideBackgroundContentElement = contentElement;
  71. // Syncs the background to reflect all current background settings
  72. this.sync( slide );
  73. return element;
  74. }
  75. /**
  76. * Renders all of the visual properties of a slide background
  77. * based on the various background attributes.
  78. *
  79. * @param {HTMLElement} slide
  80. */
  81. sync( slide ) {
  82. const element = slide.slideBackgroundElement,
  83. contentElement = slide.slideBackgroundContentElement;
  84. const data = {
  85. background: slide.getAttribute( 'data-background' ),
  86. backgroundSize: slide.getAttribute( 'data-background-size' ),
  87. backgroundImage: slide.getAttribute( 'data-background-image' ),
  88. backgroundVideo: slide.getAttribute( 'data-background-video' ),
  89. backgroundIframe: slide.getAttribute( 'data-background-iframe' ),
  90. backgroundColor: slide.getAttribute( 'data-background-color' ),
  91. backgroundGradient: slide.getAttribute( 'data-background-gradient' ),
  92. backgroundRepeat: slide.getAttribute( 'data-background-repeat' ),
  93. backgroundPosition: slide.getAttribute( 'data-background-position' ),
  94. backgroundTransition: slide.getAttribute( 'data-background-transition' ),
  95. backgroundOpacity: slide.getAttribute( 'data-background-opacity' ),
  96. };
  97. const dataPreload = slide.hasAttribute( 'data-preload' );
  98. // Reset the prior background state in case this is not the
  99. // initial sync
  100. slide.classList.remove( 'has-dark-background' );
  101. slide.classList.remove( 'has-light-background' );
  102. element.removeAttribute( 'data-loaded' );
  103. element.removeAttribute( 'data-background-hash' );
  104. element.removeAttribute( 'data-background-size' );
  105. element.removeAttribute( 'data-background-transition' );
  106. element.style.backgroundColor = '';
  107. contentElement.style.backgroundSize = '';
  108. contentElement.style.backgroundRepeat = '';
  109. contentElement.style.backgroundPosition = '';
  110. contentElement.style.backgroundImage = '';
  111. contentElement.style.opacity = '';
  112. contentElement.innerHTML = '';
  113. if( data.background ) {
  114. // Auto-wrap image urls in url(...)
  115. if( /^(http|file|\/\/)/gi.test( data.background ) || /\.(svg|png|jpg|jpeg|gif|bmp|webp)([?#\s]|$)/gi.test( data.background ) ) {
  116. slide.setAttribute( 'data-background-image', data.background );
  117. }
  118. else {
  119. element.style.background = data.background;
  120. }
  121. }
  122. // Create a hash for this combination of background settings.
  123. // This is used to determine when two slide backgrounds are
  124. // the same.
  125. if( data.background || data.backgroundColor || data.backgroundGradient || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) {
  126. element.setAttribute( 'data-background-hash', data.background +
  127. data.backgroundSize +
  128. data.backgroundImage +
  129. data.backgroundVideo +
  130. data.backgroundIframe +
  131. data.backgroundColor +
  132. data.backgroundGradient +
  133. data.backgroundRepeat +
  134. data.backgroundPosition +
  135. data.backgroundTransition +
  136. data.backgroundOpacity );
  137. }
  138. // Additional and optional background properties
  139. if( data.backgroundSize ) element.setAttribute( 'data-background-size', data.backgroundSize );
  140. if( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;
  141. if( data.backgroundGradient ) element.style.backgroundImage = data.backgroundGradient;
  142. if( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );
  143. if( dataPreload ) element.setAttribute( 'data-preload', '' );
  144. // Background image options are set on the content wrapper
  145. if( data.backgroundSize ) contentElement.style.backgroundSize = data.backgroundSize;
  146. if( data.backgroundRepeat ) contentElement.style.backgroundRepeat = data.backgroundRepeat;
  147. if( data.backgroundPosition ) contentElement.style.backgroundPosition = data.backgroundPosition;
  148. if( data.backgroundOpacity ) contentElement.style.opacity = data.backgroundOpacity;
  149. // If this slide has a background color, we add a class that
  150. // signals if it is light or dark. If the slide has no background
  151. // color, no class will be added
  152. let contrastColor = data.backgroundColor;
  153. // If no bg color was found, or it cannot be converted by colorToRgb, check the computed background
  154. if( !contrastColor || !colorToRgb( contrastColor ) ) {
  155. let computedBackgroundStyle = window.getComputedStyle( element );
  156. if( computedBackgroundStyle && computedBackgroundStyle.backgroundColor ) {
  157. contrastColor = computedBackgroundStyle.backgroundColor;
  158. }
  159. }
  160. if( contrastColor ) {
  161. const rgb = colorToRgb( contrastColor );
  162. // Ignore fully transparent backgrounds. Some browsers return
  163. // rgba(0,0,0,0) when reading the computed background color of
  164. // an element with no background
  165. if( rgb && rgb.a !== 0 ) {
  166. if( colorBrightness( contrastColor ) < 128 ) {
  167. slide.classList.add( 'has-dark-background' );
  168. }
  169. else {
  170. slide.classList.add( 'has-light-background' );
  171. }
  172. }
  173. }
  174. }
  175. /**
  176. * Updates the background elements to reflect the current
  177. * slide.
  178. *
  179. * @param {boolean} includeAll If true, the backgrounds of
  180. * all vertical slides (not just the present) will be updated.
  181. */
  182. update( includeAll = false ) {
  183. let currentSlide = this.Reveal.getCurrentSlide();
  184. let indices = this.Reveal.getIndices();
  185. let currentBackground = null;
  186. // Reverse past/future classes when in RTL mode
  187. let horizontalPast = this.Reveal.getConfig().rtl ? 'future' : 'past',
  188. horizontalFuture = this.Reveal.getConfig().rtl ? 'past' : 'future';
  189. // Update the classes of all backgrounds to match the
  190. // states of their slides (past/present/future)
  191. Array.from( this.element.childNodes ).forEach( ( backgroundh, h ) => {
  192. backgroundh.classList.remove( 'past', 'present', 'future' );
  193. if( h < indices.h ) {
  194. backgroundh.classList.add( horizontalPast );
  195. }
  196. else if ( h > indices.h ) {
  197. backgroundh.classList.add( horizontalFuture );
  198. }
  199. else {
  200. backgroundh.classList.add( 'present' );
  201. // Store a reference to the current background element
  202. currentBackground = backgroundh;
  203. }
  204. if( includeAll || h === indices.h ) {
  205. queryAll( backgroundh, '.slide-background' ).forEach( ( backgroundv, v ) => {
  206. backgroundv.classList.remove( 'past', 'present', 'future' );
  207. if( v < indices.v ) {
  208. backgroundv.classList.add( 'past' );
  209. }
  210. else if ( v > indices.v ) {
  211. backgroundv.classList.add( 'future' );
  212. }
  213. else {
  214. backgroundv.classList.add( 'present' );
  215. // Only if this is the present horizontal and vertical slide
  216. if( h === indices.h ) currentBackground = backgroundv;
  217. }
  218. } );
  219. }
  220. } );
  221. // Stop content inside of previous backgrounds
  222. if( this.previousBackground ) {
  223. this.Reveal.slideContent.stopEmbeddedContent( this.previousBackground, { unloadIframes: !this.Reveal.slideContent.shouldPreload( this.previousBackground ) } );
  224. }
  225. // Start content in the current background
  226. if( currentBackground ) {
  227. this.Reveal.slideContent.startEmbeddedContent( currentBackground );
  228. let currentBackgroundContent = currentBackground.querySelector( '.slide-background-content' );
  229. if( currentBackgroundContent ) {
  230. let backgroundImageURL = currentBackgroundContent.style.backgroundImage || '';
  231. // Restart GIFs (doesn't work in Firefox)
  232. if( /\.gif/i.test( backgroundImageURL ) ) {
  233. currentBackgroundContent.style.backgroundImage = '';
  234. window.getComputedStyle( currentBackgroundContent ).opacity;
  235. currentBackgroundContent.style.backgroundImage = backgroundImageURL;
  236. }
  237. }
  238. // Don't transition between identical backgrounds. This
  239. // prevents unwanted flicker.
  240. let previousBackgroundHash = this.previousBackground ? this.previousBackground.getAttribute( 'data-background-hash' ) : null;
  241. let currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' );
  242. if( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== this.previousBackground ) {
  243. this.element.classList.add( 'no-transition' );
  244. }
  245. this.previousBackground = currentBackground;
  246. }
  247. // If there's a background brightness flag for this slide,
  248. // bubble it to the .reveal container
  249. if( currentSlide ) {
  250. [ 'has-light-background', 'has-dark-background' ].forEach( classToBubble => {
  251. if( currentSlide.classList.contains( classToBubble ) ) {
  252. this.Reveal.getRevealElement().classList.add( classToBubble );
  253. }
  254. else {
  255. this.Reveal.getRevealElement().classList.remove( classToBubble );
  256. }
  257. }, this );
  258. }
  259. // Allow the first background to apply without transition
  260. setTimeout( () => {
  261. this.element.classList.remove( 'no-transition' );
  262. }, 1 );
  263. }
  264. /**
  265. * Updates the position of the parallax background based
  266. * on the current slide index.
  267. */
  268. updateParallax() {
  269. let indices = this.Reveal.getIndices();
  270. if( this.Reveal.getConfig().parallaxBackgroundImage ) {
  271. let horizontalSlides = this.Reveal.getHorizontalSlides(),
  272. verticalSlides = this.Reveal.getVerticalSlides();
  273. let backgroundSize = this.element.style.backgroundSize.split( ' ' ),
  274. backgroundWidth, backgroundHeight;
  275. if( backgroundSize.length === 1 ) {
  276. backgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 );
  277. }
  278. else {
  279. backgroundWidth = parseInt( backgroundSize[0], 10 );
  280. backgroundHeight = parseInt( backgroundSize[1], 10 );
  281. }
  282. let slideWidth = this.element.offsetWidth,
  283. horizontalSlideCount = horizontalSlides.length,
  284. horizontalOffsetMultiplier,
  285. horizontalOffset;
  286. if( typeof this.Reveal.getConfig().parallaxBackgroundHorizontal === 'number' ) {
  287. horizontalOffsetMultiplier = this.Reveal.getConfig().parallaxBackgroundHorizontal;
  288. }
  289. else {
  290. horizontalOffsetMultiplier = horizontalSlideCount > 1 ? ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 ) : 0;
  291. }
  292. horizontalOffset = horizontalOffsetMultiplier * indices.h * -1;
  293. let slideHeight = this.element.offsetHeight,
  294. verticalSlideCount = verticalSlides.length,
  295. verticalOffsetMultiplier,
  296. verticalOffset;
  297. if( typeof this.Reveal.getConfig().parallaxBackgroundVertical === 'number' ) {
  298. verticalOffsetMultiplier = this.Reveal.getConfig().parallaxBackgroundVertical;
  299. }
  300. else {
  301. verticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 );
  302. }
  303. verticalOffset = verticalSlideCount > 0 ? verticalOffsetMultiplier * indices.v : 0;
  304. this.element.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px';
  305. }
  306. }
  307. destroy() {
  308. this.element.remove();
  309. }
  310. }