# OwlCarousel2 is currently being transferred to a new owner Stay tuned while the new owner sorts through some stuff. (Oh, hi, I'm [David](https://github.com/daviddeutsch)!) ## Owl Carousel 2 Touch enabled [jQuery](https://jquery.com/) plugin that lets you create a beautiful, responsive carousel slider. **To get started, check out https://owlcarousel2.github.io/OwlCarousel2/.** ## Quick start ### Install This package can be installed with: - [npm](https://www.npmjs.com/package/owl.carousel): `npm install --save owl.carousel` - [bower](http://bower.io/search/?q=owl.carousel): `bower install --save owl.carousel` Or download the [latest release](https://github.com/OwlCarousel2/OwlCarousel2/releases). ### Load #### Webpack Load the required stylesheet and JS: ```js import 'owl.carousel/dist/assets/owl.carousel.css'; import $ from 'jquery'; import 'imports?jQuery=jquery!owl.carousel'; ``` #### Static HTML Put the required stylesheet at the [top](https://developer.yahoo.com/performance/rules.html#css_top) of your markup: ```html ``` ```html ``` **NOTE:** If you want to use the default navigation styles, you will also need to include `owl.theme.default.css`. Put the script at the [bottom](https://developer.yahoo.com/performance/rules.html#js_bottom) of your markup right after jQuery: ```html ``` ```html ``` ### Usage Wrap your items (`div`, `a`, `img`, `span`, `li` etc.) with a container element (`div`, `ul` etc.). Only the class `owl-carousel` is mandatory to apply proper styles: ```html