README.html 2.4 KB

12345678910111213141516171819202122232425262728293031
  1. <h1 align="center"><a href="https://github.com/fancyapps/fancybox" target="_blank" rel="noopener">fancyBox 3</a> for <a href="https://github.com/theme-next" target="_blank" rel="noopener">NexT</a></h1>
  2. <h2 align="center">If you want fancybox v2, please go to <a href="https://github.com/theme-next/theme-next-fancybox" target="_blank" rel="noopener">theme-next-fancybox</a></h2>
  3. <h1 align="center">Installation</h1>
  4. <h2 align="center">Step 0 &rarr; Delete fancybox 2 (if you want to upgrade from v2)</h2>
  5. <pre class="highlight"><code class="bash">$ rm -rf themes/next/<span class="built_in">source</span>/lib/fancybox
  6. </code></pre>
  7. <h2>If you want to use the CDN instead of clone this repo, please jump to the Step 3.</h2>
  8. <h2 align="center">Step 1 &rarr; Go to NexT dir</h2>
  9. <p>Change dir to <strong>NexT</strong> directory. There must be <code>layout</code>, <code>source</code>, <code>languages</code> and other directories:</p>
  10. <pre class="highlight"><code class="sh">$ <span class="built_in">cd</span> themes/next
  11. $ ls
  12. bower.json _config.yml docs gulpfile.coffee languages layout LICENSE.md package.json README.md scripts <span class="built_in">source</span> <span class="built_in">test</span>
  13. </code></pre>
  14. <h2 align="center">Step 2 &rarr; Get module</h2>
  15. <p>Install module to <code>source/lib</code> directory:</p>
  16. <pre class="highlight"><code class="sh">$ git <span class="built_in">clone</span> https://github.com/theme-next/theme-next-fancybox3 <span class="built_in">source</span>/lib/fancybox
  17. </code></pre>
  18. <h2 align="center">Step 3 &rarr; Set it up</h2>
  19. <p>Enable module in <strong>NexT</strong> <code>_config.yml</code> file:</p>
  20. <pre class="highlight"><code class="yml"><span class="attr">fancybox:</span> <span class="literal">true</span>
  21. </code></pre>
  22. <p><strong>And, if you wants to use the CDN, then need to set:</strong></p>
  23. <pre class="highlight"><code class="yml"><span class="attr">vendors:</span>
  24. <span class="string">...</span>
  25. <span class="attr">fancybox:</span> <span class="string">//cdn.jsdelivr.net/gh/fancyapps/fancybox@3/dist/jquery.fancybox.min.js</span>
  26. <span class="attr">fancybox_css:</span> <span class="string">//cdn.jsdelivr.net/gh/fancyapps/fancybox@3/dist/jquery.fancybox.min.css</span>
  27. </code></pre>
  28. <h1 align="center">Update</h1>
  29. <pre class="highlight"><code class="sh">$ <span class="built_in">cd</span> themes/next/<span class="built_in">source</span>/lib/fancybox
  30. $ git pull
  31. </code></pre>