Skip to content

Commit

Permalink
4.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Oct 27, 2017
1 parent 56134c5 commit b2c814b
Show file tree
Hide file tree
Showing 10 changed files with 292 additions and 148 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## [Swiper 4.0.3](https://github.com/nolimits4web/swiper/compare/v4.0.2...v4.0.5) - Released on October 27, 2017
* Fixed Parallax opacity and scale transitions
* Better compatability with SSR by using dummy `document` object
* Fixed styles for dynamic pagination buttons in RTL mode
* Fixed issue with last pagination button not being active with `slidesPerView: 'auto'`
* Renamed build tasks: `build-dev` -> `build:dev`, `build-prod` -> `build:prod`

## [Swiper 4.0.2](https://github.com/nolimits4web/swiper/compare/v4.0.1...v4.0.2) - Released on October 18, 2017
* Lazy loading support for Virtual slides
* Added `beforeResize` event
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ $ npm install

And build development version of Swiper:
```
$ npm run build-dev
$ npm run build:dev
```

The result is available in `build/` folder.

### Production Build

```
$ npm run build-prod
$ npm run build:prod
```

Production version will available in `dist/` folder.
Expand Down
11 changes: 9 additions & 2 deletions dist/css/swiper.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/**
* Swiper 4.0.2
* Swiper 4.0.3
* Most modern mobile touch slider and framework with hardware accelerated transitions
* http://www.idangero.us/swiper/
*
* Copyright 2014-2017 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 18, 2017
* Released on: October 27, 2017
*/
.swiper-container {
margin-left: auto;
Expand Down Expand Up @@ -325,6 +325,13 @@ button.swiper-pagination-bullet {
transition: 200ms transform, 200ms left;
transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
-webkit-transition: 200ms right, 200ms -webkit-transform;
transition: 200ms right, 200ms -webkit-transform;
-o-transition: 200ms transform, 200ms right;
transition: 200ms transform, 200ms right;
transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
background: rgba(0, 0, 0, 0.25);
Expand Down
6 changes: 3 additions & 3 deletions dist/css/swiper.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit b2c814b

Please sign in to comment.