소프트웨어/jQuery

갤러리 jQuery,

개발자_이훈규 2015. 11. 1. 14:59

https://github.com/kamilczujowski/least.js-2


least.js 2

Random and Responsive HiDPI jQuery Gallery based on HTML5 and CSS3

What's new? (Update: - 10/07/2014)

Version 2.2.0 is available for download now 
See the complete list of changes here.

About least.js 2

  • least.js 2 ist smaller, faster and easier to use and include.
  • least.js 2 is optimized for HiDPI (Retina) Devices.
  • least.js 2 has more options and features.

Browser compatibility

  • IE 9+
  • Safari 6.0+
  • Google Chrome 29+
  • Firefox 24+
  • iOS 6.0+

Directory structure

  leastjs2/
        ├── README.md
        ├── node_module       (Grunt modules)
        ├── Gruntfile.coffee  (Grunt Config)
        ├── package.json      (Grunt Config)
        ├── index.html
        ├── src
        │   └── css
        │   │   ├── least.min.scss    (Minified style.scss)
        │   │ ├── least.min.css.map (Source map)
        │   └── img
        │   │   ├── close.svg
        │   │ ├── loading.svg
        │   └── js
        │   │   └── libs
        │   │   │    └── jquery
        │   │   │    │  └── 2.0.2
        │   │   │    │      ├── jquery.min.js
        │   │   └── least
        │   │   │   ├── least.js        (Original .js file)
        │   │   │   ├── least.min.js    (Minified .js file)
        │   │ │   ├── least.min.map (Source map)
        │   └── media           (Image folder)
        │   │   └── big         (Fullscreen images)
        │   │   │   ├── 01.jpg      (Default fullscreen)
        │   │   │   ├── 01@2x.jpg   (HiDPI fullscreen)
        │   │   └── thumbnails  (Thumbnail images)    
        │   │   │   ├── 01.jpg      (Default thumbnail)
        │   │   │   ├── 01@2x.jpg   (HiDPI thumbnail)
        │   └── sass    (SASS files)
        │   │   └── assets
        │   │   │   ├── _global.scss
        │   │   │   ├── _mixins.scss
        │   │   │   ├── _options.scss   (SASS options)
        │   │   └── templates
        │   │   │   ├── _least.scss     (least structure)
        │   │   ├── style.scss          (Original style-file)
        ─────