缩放幻灯片-Zoom Slider

缩放幻灯片-Zoom Slider
Today’s Blueprint is a simple content slider with depth-like zoom functionality. Each slide has a predefined zoom area that will be used to calculate the appropriate scale value for a fullscreen fill. Once the icon for zooming is clicked, the zoom area as well as the page get scaled, creating the illusion that the viewer is approaching the item. Once the whole page is covered, we show some more details.
一个简单的内容滑块,具有缩放功能,每张幻灯片都有一个预定义的缩放区域,用于计算全屏填充的合适比例值,点击缩放图标后,缩放区域和页面会缩小,造成观众接近物品的错觉,一旦整个页面被覆盖,我们会显示更多的细节。

查看演示 下载资源

HTML

  1. <!-- Main container -->
  2. <div class="container">
  3. <!-- Blueprint header -->
  4. <header class="bp-header cf">
  5. <!-- Page title etc. -->
  6. </header>
  7. <!-- Grid -->
  8. <section class="slider">
  9. <div class="slide slide--current" data-content="content-1">
  10. <div class="slide__mover">
  11. <div class="zoomer flex-center">
  12. <img class="zoomer__image" src="images/iphone.png" alt="iPhone" />
  13. <div class="preview">
  14. <img src="images/iphone-content-preview.png" alt="iPhone app preview" />
  15. <div class="zoomer__area zoomer__area--size-2"></div>
  16. </div>
  17. </div>
  18. </div>
  19. <h2 class="slide__title"><span>The Classy</span> iPhone 6</h2>
  20. </div>
  21. <div class="slide" data-content="content-2">
  22. <!-- ... -->
  23. </div>
  24. <!-- ... -->
  25. <nav class="slider__nav">
  26. <button class="button button--nav-prev">
  27. <i class="icon icon--arrow-left"></i>
  28. <span class="text-hidden">Previous product</span>
  29. </button>
  30. <button class="button button--zoom">
  31. <i class="icon icon--zoom"></i>
  32. <span class="text-hidden">View details</span>
  33. </button>
  34. <button class="button button--nav-next">
  35. <i class="icon icon--arrow-right"></i>
  36. <span class="text-hidden">Next product</span>
  37. </button>
  38. </nav>
  39. </section>
  40. <!-- /slider-->
  41. <!-- content -->
  42. <section class="content">
  43. <div class="content__item" id="content-1">
  44. <img class="content__item-img rounded-right" src="images/iphone-content.png" alt="Apple Watch Content" />
  45. <div class="content__item-inner">
  46. <h2>The iPhone 6</h2>
  47. <h3>Incredible performance for powerful apps</h3>
  48. <p>...</p>
  49. </div>
  50. </div>
  51. <div class="content__item" id="content-2">
  52. <!-- ... -->
  53. </div>
  54. <!-- ... -->
  55. <button class="button button--close">
  56. <i class="icon icon--circle-cross"></i>
  57. <span class="text-hidden">Close content</span>
  58. </button>
  59. </section>
  60. <!-- /content -->
  61. </div>
  62. <script src="js/classie.js"></script>
  63. <script src="js/dynamics.min.js"></script>
  64. <script src="js/main.js"></script>

CSS

  1. /* Helper classes */
  2. html,
  3. body {
  4. overflow: hidden;
  5. height: 100%;
  6. }
  7. .container {
  8. position: relative;
  9. overflow: hidden;
  10. overflow-y: scroll;
  11. width: 100%;
  12. height: 100%;
  13. -webkit-overflow-scrolling: touch;
  14. }
  15. .noscroll .container {
  16. overflow-y: hidden;
  17. }
  18. .slider {
  19. position: relative;
  20. z-index: 200;
  21. width: 100%;
  22. margin: 0 auto;
  23. padding: 0 0 7em;
  24. text-align: center;
  25. -webkit-user-select: none;
  26. -moz-user-select: none;
  27. -ms-user-select: none;
  28. user-select: none;
  29. -webkit-touch-callout: none;
  30. -khtml-user-select: none;
  31. }
  32. .slide {
  33. position: absolute;
  34. top: 0;
  35. visibility: hidden;
  36. width: 100%;
  37. opacity: 0;
  38. }
  39. .slide--current {
  40. position: relative;
  41. z-index: 100;
  42. visibility: visible;
  43. opacity: 1;
  44. }
  45. .slide__mover {
  46. position: relative;
  47. z-index: 100;
  48. }
  49. .slide__title {
  50. font-size: 1.75em;
  51. font-weight: normal;
  52. margin: 0 auto;
  53. padding: 1em 0 0 0;
  54. }
  55. .slide__title span {
  56. font-size: 55%;
  57. font-weight: bold;
  58. display: block;
  59. letter-spacing: 2px;
  60. text-transform: uppercase;
  61. color: #35303d;
  62. }
  63. .slider__nav {
  64. position: absolute;
  65. bottom: 2em;
  66. width: 100%;
  67. text-align: center;
  68. }
  69. .button {
  70. font-size: 1.31em;
  71. position: relative;
  72. display: inline-block;
  73. overflow: hidden;
  74. margin: 0 25px;
  75. padding: 0;
  76. cursor: pointer;
  77. color: #5c5edc;
  78. border: none;
  79. background: none;
  80. }
  81. .button:focus {
  82. outline: none;
  83. }
  84. .button:hover {
  85. color: #fff;
  86. }
  87. .text-hidden {
  88. position: absolute;
  89. top: 200%;
  90. }
  91. .button--close {
  92. font-size: 1.55em;
  93. position: absolute;
  94. top: 30px;
  95. right: 30px;
  96. margin: 0;
  97. opacity: 0;
  98. color: #50505a;
  99. -webkit-transition: opacity 0.3s;
  100. transition: opacity 0.3s;
  101. }
  102. .content--open .button--close {
  103. opacity: 1;
  104. }
  105. /* Zoomer */
  106. .zoomer {
  107. position: relative;
  108. height: 360px; /* this is needed for IE10 so that vertical flexbox centering works */
  109. }
  110. .flex-center {
  111. display: -webkit-flex;
  112. display: -ms-flexbox;
  113. display: flex;
  114. -webkit-align-items: center;
  115. -ms-flex-align: center;
  116. align-items: center;
  117. -webkit-justify-content: center;
  118. -ms-flex-pack: center;
  119. justify-content: center;
  120. }
  121. .zoomer__image {
  122. display: block;
  123. margin: 0;
  124. -webkit-flex: none;
  125. -ms-flex: none;
  126. flex: none;
  127. }
  128. .zoomer__area,
  129. .preview {
  130. position: absolute;
  131. top: 50%;
  132. left: 50%;
  133. -webkit-transform: translate3d(-50%,-50%,0);
  134. transform: translate3d(-50%,-50%,0);
  135. }
  136. .zoomer__area:focus {
  137. outline: none;
  138. }
  139. .zoomer__area--size-1 {
  140. /* Apple Watch */
  141. width: 96px;
  142. height: 118px;
  143. }
  144. .zoomer__area--size-2 {
  145. /* iPhone */
  146. width: 112px;
  147. height: 198px;
  148. }
  149. .zoomer__area--size-3 {
  150. /* MacBook */
  151. width: 315px;
  152. height: 200px;
  153. }
  154. .zoomer__area--size-4 {
  155. /* iPad */
  156. width: 150px;
  157. height: 200px;
  158. }
  159. .zoomer__area--size-5 {
  160. /* iMac */
  161. width: 315px;
  162. height: 189px;
  163. }
  164. .preview {
  165. overflow: hidden;
  166. background: #18191b;
  167. }
  168. .preview img {
  169. display: block;
  170. border-radius: inherit;
  171. -webkit-transform: translate3d(0,0,0);
  172. transform: translate3d(0,0,0);
  173. }
  174. .zoomer--active .preview img {
  175. -webkit-transform: translate3d(100%,0,0);
  176. transform: translate3d(100%,0,0);
  177. }
  178. .rounded {
  179. border-radius: 15px;
  180. }
  181. .rounded-right {
  182. border-radius: 0 15px 15px 0;
  183. }
  184. .preview__content {
  185. position: absolute;
  186. top: 0;
  187. left: 100%;
  188. width: 100%;
  189. height: 100%;
  190. border-radius: inherit;
  191. }
  192. /* Content */
  193. .content {
  194. position: fixed;
  195. z-index: 1000;
  196. top: 0;
  197. left: -100%;
  198. overflow: hidden;
  199. overflow-y: scroll;
  200. width: 100%;
  201. height: 100vh;
  202. background: #18191b;
  203. -webkit-overflow-scrolling: touch;
  204. }
  205. .content--open {
  206. left: 0;
  207. }
  208. .content__item {
  209. position: absolute;
  210. top: 0;
  211. display: -webkit-flex;
  212. display: -ms-flexbox;
  213. display: flex;
  214. overflow: hidden;
  215. height: 0;
  216. min-height: 100%;
  217. margin: 0 auto;
  218. padding: 2em 0;
  219. pointer-events: none;
  220. opacity: 0;
  221. color: #fff;
  222. -webkit-align-items: center;
  223. -ms-flex-align: center;
  224. align-items: center;
  225. }
  226. .content__item--current {
  227. pointer-events: auto;
  228. opacity: 1;
  229. }
  230. .content__item--reset {
  231. height: auto;
  232. }
  233. .content h2 {
  234. font-size: 3.5em;
  235. font-weight: normal;
  236. margin: 0;
  237. }
  238. .content h3 {
  239. font-size: 1.95em;
  240. font-weight: normal;
  241. margin: 0.25em 0 0.5em;
  242. color: #685884;
  243. }
  244. .content p {
  245. font-size: 1.25em;
  246. line-height: 1.5;
  247. }
  248. .content__item-img {
  249. display: block;
  250. max-width: 40vw;
  251. max-height: 80vh;
  252. -webkit-transform: translate3d(-120%,0,0);
  253. transform: translate3d(-120%,0,0);
  254. -webkit-flex: none;
  255. -ms-flex: none;
  256. flex: none;
  257. }
  258. .content__item--current .content__item-img {
  259. -webkit-transform: translate3d(-10px,0,0);
  260. transform: translate3d(-10px,0,0);
  261. }
  262. .content__item-inner {
  263. padding: 0 10vw 0;
  264. opacity: 0;
  265. -webkit-transform: translate3d(0,50px,0);
  266. transform: translate3d(0,50px,0);
  267. }
  268. .content__item--current .content__item-inner {
  269. opacity: 1;
  270. -webkit-transform: translate3d(0,0,0);
  271. transform: translate3d(0,0,0);
  272. }
  273. /**************************/
  274. /* All synced transitions */
  275. /**************************/
  276. .zoomer {
  277. -webkit-transition: -webkit-transform 0.5s;
  278. transition: transform 0.5s;
  279. -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
  280. transition-timing-function: cubic-bezier(0.7,0,0.3,1);
  281. }
  282. .zoomer.zoomer--notrans {
  283. -webkit-transition: none;
  284. transition: none;
  285. }
  286. .zoomer__image {
  287. -webkit-transition: opacity 0.3s 0.3s;
  288. transition: opacity 0.3s 0.3s;
  289. }
  290. .zoomer--active .zoomer__image {
  291. opacity: 0;
  292. -webkit-transition-delay: 0s;
  293. transition-delay: 0s;
  294. }
  295. .preview img {
  296. -webkit-transition: -webkit-transform 0.6s 0.3s;
  297. transition: transform 0.6s 0.3s;
  298. -webkit-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
  299. transition-timing-function: cubic-bezier(0.2,1,0.3,1);
  300. }
  301. .zoomer--active .preview img {
  302. -webkit-transition: -webkit-transform 0.3s;
  303. transition: transform 0.3s;
  304. }
  305. .content {
  306. -webkit-transition: left 0s;
  307. transition: left 0s;
  308. }
  309. .content__item {
  310. -webkit-transition: opacity 0s;
  311. transition: opacity 0s;
  312. }
  313. .content,
  314. .content__item {
  315. /* delay for content to disappear and zoomer to start transitioning back to 0 */
  316. -webkit-transition-delay: 0.3s;
  317. transition-delay: 0.3s;
  318. }
  319. .content--open,
  320. .content__item--current {
  321. -webkit-transition: none;
  322. transition: none;
  323. }
  324. .content__item-img {
  325. -webkit-transition: -webkit-transform 0.4s;
  326. transition: transform 0.4s;
  327. -webkit-transition-timing-function: cubic-bezier(0.7,1,0.8,1);
  328. transition-timing-function: cubic-bezier(0.7,1,0.8,1);
  329. }
  330. .content__item--current .content__item-img {
  331. -webkit-transition-timing-function: cubic-bezier(0.2,1,0.3,1);
  332. transition-timing-function: cubic-bezier(0.2,1,0.3,1);
  333. -webkit-transition-duration: 1s;
  334. transition-duration: 1s;
  335. }
  336. .content__item-inner {
  337. -webkit-transition: -webkit-transform 0.6s, opacity 0.3s;
  338. transition: transform 0.6s, opacity 0.3s;
  339. -webkit-transition-timing-function: cubic-bezier(0.7,1,0.8,1), ease;
  340. transition-timing-function: cubic-bezier(0.7,1,0.8,1), ease;
  341. }
  342. .content__item--current .content__item-inner {
  343. -webkit-transition-timing-function: cubic-bezier(0.2,1,0.3,1), ease;
  344. transition-timing-function: cubic-bezier(0.2,1,0.3,1), ease;
  345. -webkit-transition-duration: 1.7s;
  346. transition-duration: 1.7s;
  347. }
  348. /* Media Queries */
  349. @media screen and (max-width: 50em) {
  350. .content__item {
  351. display: block;
  352. }
  353. .content__item-img {
  354. max-width: calc(100% - 80px);
  355. max-height: 70vh;
  356. }
  357. .content h2 {
  358. font-size: 3em;
  359. }
  360. .content__item-inner {
  361. font-size: 82%;
  362. padding: 4em 3em 2em;
  363. }
  364. }

JavaScript

  1. /**
  2. * main.js
  3. * http://www.codrops.com
  4. *
  5. * Licensed under the MIT license.
  6. * http://www.opensource.org/licenses/mit-license.php
  7. *
  8. * Copyright 2015, Codrops
  9. * http://www.codrops.com
  10. */
  11. ;(function(window) {
  12. 'use strict';
  13. var bodyEl = document.body,
  14. docElem = window.document.documentElement,
  15. support = { transitions: Modernizr.csstransitions },
  16. // transition end event name
  17. transEndEventNames = { 'WebkitTransition': 'webkitTransitionEnd', 'MozTransition': 'transitionend', 'OTransition': 'oTransitionEnd', 'msTransition': 'MSTransitionEnd', 'transition': 'transitionend' },
  18. transEndEventName = transEndEventNames[ Modernizr.prefixed( 'transition' ) ],
  19. onEndTransition = function( el, callback ) {
  20. var onEndCallbackFn = function( ev ) {
  21. if( support.transitions ) {
  22. if( ev.target != this ) return;
  23. this.removeEventListener( transEndEventName, onEndCallbackFn );
  24. }
  25. if( callback && typeof callback === 'function' ) { callback.call(this); }
  26. };
  27. if( support.transitions ) {
  28. el.addEventListener( transEndEventName, onEndCallbackFn );
  29. }
  30. else {
  31. onEndCallbackFn();
  32. }
  33. },
  34. // window sizes
  35. win = {width: window.innerWidth, height: window.innerHeight},
  36. // some helper vars to disallow scrolling
  37. lockScroll = false, xscroll, yscroll,
  38. scrollContainer = document.querySelector('.container'),
  39. // the main slider and its items
  40. sliderEl = document.querySelector('.slider'),
  41. items = [].slice.call(sliderEl.querySelectorAll('.slide')),
  42. // total number of items
  43. itemsTotal = items.length,
  44. // navigation controls/arrows
  45. navRightCtrl = sliderEl.querySelector('.button--nav-next'),
  46. navLeftCtrl = sliderEl.querySelector('.button--nav-prev'),
  47. zoomCtrl = sliderEl.querySelector('.button--zoom'),
  48. // the main content element
  49. contentEl = document.querySelector('.content'),
  50. // close content control
  51. closeContentCtrl = contentEl.querySelector('button.button--close'),
  52. // index of current item
  53. current = 0,
  54. // check if an item is "open"
  55. isOpen = false,
  56. isFirefox = typeof InstallTrigger !== 'undefined',
  57. // scale body when zooming into the items, if not Firefox (the performance in Firefox is not very good)
  58. bodyScale = isFirefox ? false : 3;
  59. // some helper functions:
  60. function scrollX() { return window.pageXOffset || docElem.scrollLeft; }
  61. function scrollY() { return window.pageYOffset || docElem.scrollTop; }
  62. // from http://www.sberry.me/articles/javascript-event-throttling-debouncing
  63. function throttle(fn, delay) {
  64. var allowSample = true;
  65. return function(e) {
  66. if (allowSample) {
  67. allowSample = false;
  68. setTimeout(function() { allowSample = true; }, delay);
  69. fn(e);
  70. }
  71. };
  72. }
  73. function init() {
  74. initEvents();
  75. }
  76. // event binding
  77. function initEvents() {
  78. // open items
  79. zoomCtrl.addEventListener('click', function() {
  80. openItem(items[current]);
  81. });
  82. // close content
  83. closeContentCtrl.addEventListener('click', closeContent);
  84. // navigation
  85. navRightCtrl.addEventListener('click', function() { navigate('right'); });
  86. navLeftCtrl.addEventListener('click', function() { navigate('left'); });
  87. // window resize
  88. window.addEventListener('resize', throttle(function(ev) {
  89. // reset window sizes
  90. win = {width: window.innerWidth, height: window.innerHeight};
  91. // reset transforms for the items (slider items)
  92. items.forEach(function(item, pos) {
  93. if( pos === current ) return;
  94. var el = item.querySelector('.slide__mover');
  95. dynamics.css(el, { translateX: el.offsetWidth });
  96. });
  97. }, 10));
  98. // keyboard navigation events
  99. document.addEventListener( 'keydown', function( ev ) {
  100. if( isOpen ) return;
  101. var keyCode = ev.keyCode || ev.which;
  102. switch (keyCode) {
  103. case 37:
  104. navigate('left');
  105. break;
  106. case 39:
  107. navigate('right');
  108. break;
  109. }
  110. } );
  111. }
  112. // opens one item
  113. function openItem(item) {
  114. if( isOpen ) return;
  115. isOpen = true;
  116. // the element that will be transformed
  117. var zoomer = item.querySelector('.zoomer');
  118. // slide screen preview
  119. classie.add(zoomer, 'zoomer--active');
  120. // disallow scroll
  121. scrollContainer.addEventListener('scroll', noscroll);
  122. // apply transforms
  123. applyTransforms(zoomer);
  124. // also scale the body so it looks the camera moves to the item.
  125. if( bodyScale ) {
  126. dynamics.animate(bodyEl, { scale: bodyScale }, { type: dynamics.easeInOut, duration: 500 });
  127. }
  128. // after the transition is finished:
  129. onEndTransition(zoomer, function() {
  130. // reset body transform
  131. if( bodyScale ) {
  132. dynamics.stop(bodyEl);
  133. dynamics.css(bodyEl, { scale: 1 });
  134. // fix for safari (allowing fixed children to keep position)
  135. bodyEl.style.WebkitTransform = 'none';
  136. bodyEl.style.transform = 'none';
  137. }
  138. // no scrolling
  139. classie.add(bodyEl, 'noscroll');
  140. classie.add(contentEl, 'content--open');
  141. var contentItem = document.getElementById(item.getAttribute('data-content'))
  142. classie.add(contentItem, 'content__item--current');
  143. classie.add(contentItem, 'content__item--reset');
  144. // reset zoomer transform - back to its original position/transform without a transition
  145. classie.add(zoomer, 'zoomer--notrans');
  146. zoomer.style.WebkitTransform = 'translate3d(0,0,0) scale3d(1,1,1)';
  147. zoomer.style.transform = 'translate3d(0,0,0) scale3d(1,1,1)';
  148. });
  149. }
  150. // closes the item/content
  151. function closeContent() {
  152. var contentItem = contentEl.querySelector('.content__item--current'),
  153. zoomer = items[current].querySelector('.zoomer');
  154. classie.remove(contentEl, 'content--open');
  155. classie.remove(contentItem, 'content__item--current');
  156. classie.remove(bodyEl, 'noscroll');
  157. if( bodyScale ) {
  158. // reset fix for safari (allowing fixed children to keep position)
  159. bodyEl.style.WebkitTransform = '';
  160. bodyEl.style.transform = '';
  161. }
  162. /* fix for safari flickering */
  163. var nobodyscale = true;
  164. applyTransforms(zoomer, nobodyscale);
  165. /* fix for safari flickering */
  166. // wait for the inner content to finish the transition
  167. onEndTransition(contentItem, function(ev) {
  168. classie.remove(this, 'content__item--reset');
  169. // reset scrolling permission
  170. lockScroll = false;
  171. scrollContainer.removeEventListener('scroll', noscroll);
  172. /* fix for safari flickering */
  173. zoomer.style.WebkitTransform = 'translate3d(0,0,0) scale3d(1,1,1)';
  174. zoomer.style.transform = 'translate3d(0,0,0) scale3d(1,1,1)';
  175. /* fix for safari flickering */
  176. // scale up - behind the scenes - the item again (without transition)
  177. applyTransforms(zoomer);
  178. // animate/scale down the item
  179. setTimeout(function() {
  180. classie.remove(zoomer, 'zoomer--notrans');
  181. classie.remove(zoomer, 'zoomer--active');
  182. zoomer.style.WebkitTransform = 'translate3d(0,0,0) scale3d(1,1,1)';
  183. zoomer.style.transform = 'translate3d(0,0,0) scale3d(1,1,1)';
  184. }, 25);
  185. if( bodyScale ) {
  186. dynamics.css(bodyEl, { scale: bodyScale });
  187. dynamics.animate(bodyEl, { scale: 1 }, {
  188. type: dynamics.easeInOut,
  189. duration: 500
  190. });
  191. }
  192. isOpen = false;
  193. });
  194. }
  195. // applies the necessary transform value to scale the item up
  196. function applyTransforms(el, nobodyscale) {
  197. // zoomer area and scale value
  198. var zoomerArea = el.querySelector('.zoomer__area'),
  199. zoomerAreaSize = {width: zoomerArea.offsetWidth, height: zoomerArea.offsetHeight},
  200. zoomerOffset = zoomerArea.getBoundingClientRect(),
  201. scaleVal = zoomerAreaSize.width/zoomerAreaSize.height < win.width/win.height ? win.width/zoomerAreaSize.width : win.height/zoomerAreaSize.height;
  202. if( bodyScale && !nobodyscale ) {
  203. scaleVal /= bodyScale;
  204. }
  205. // apply transform
  206. el.style.WebkitTransform = 'translate3d(' + Number(win.width/2 - (zoomerOffset.left+zoomerAreaSize.width/2)) + 'px,' + Number(win.height/2 - (zoomerOffset.top+zoomerAreaSize.height/2)) + 'px,0) scale3d(' + scaleVal + ',' + scaleVal + ',1)';
  207. el.style.transform = 'translate3d(' + Number(win.width/2 - (zoomerOffset.left+zoomerAreaSize.width/2)) + 'px,' + Number(win.height/2 - (zoomerOffset.top+zoomerAreaSize.height/2)) + 'px,0) scale3d(' + scaleVal + ',' + scaleVal + ',1)';
  208. }
  209. // navigate the slider
  210. function navigate(dir) {
  211. var itemCurrent = items[current],
  212. currentEl = itemCurrent.querySelector('.slide__mover'),
  213. currentTitleEl = itemCurrent.querySelector('.slide__title');
  214. // update new current value
  215. if( dir === 'right' ) {
  216. current = current < itemsTotal-1 ? current + 1 : 0;
  217. }
  218. else {
  219. current = current > 0 ? current - 1 : itemsTotal-1;
  220. }
  221. var itemNext = items[current],
  222. nextEl = itemNext.querySelector('.slide__mover'),
  223. nextTitleEl = itemNext.querySelector('.slide__title');
  224. // animate the current element out
  225. dynamics.animate(currentEl, { opacity: 0, translateX: dir === 'right' ? -1*currentEl.offsetWidth/2 : currentEl.offsetWidth/2, rotateZ: dir === 'right' ? -10 : 10 }, {
  226. type: dynamics.spring,
  227. duration: 2000,
  228. friction: 600,
  229. complete: function() {
  230. dynamics.css(itemCurrent, { opacity: 0, visibility: 'hidden' });
  231. }
  232. });
  233. // animate the current title out
  234. dynamics.animate(currentTitleEl, { translateX: dir === 'right' ? -250 : 250, opacity: 0 }, {
  235. type: dynamics.bezier,
  236. points: [{"x":0,"y":0,"cp":[{"x":0.2,"y":1}]},{"x":1,"y":1,"cp":[{"x":0.3,"y":1}]}],
  237. duration: 450
  238. });
  239. // set the right properties for the next element to come in
  240. dynamics.css(itemNext, { opacity: 1, visibility: 'visible' });
  241. dynamics.css(nextEl, { opacity: 0, translateX: dir === 'right' ? nextEl.offsetWidth/2 : -1*nextEl.offsetWidth/2, rotateZ: dir === 'right' ? 10 : -10 });
  242. // animate the next element in
  243. dynamics.animate(nextEl, { opacity: 1, translateX: 0 }, {
  244. type: dynamics.spring,
  245. duration: 2000,
  246. friction: 600,
  247. complete: function() {
  248. items.forEach(function(item) { classie.remove(item, 'slide--current'); });
  249. classie.add(itemNext, 'slide--current');
  250. }
  251. });
  252. // set the right properties for the next title to come in
  253. dynamics.css(nextTitleEl, { translateX: dir === 'right' ? 250 : -250, opacity: 0 });
  254. // animate the next title in
  255. dynamics.animate(nextTitleEl, { translateX: 0, opacity: 1 }, {
  256. type: dynamics.bezier,
  257. points: [{"x":0,"y":0,"cp":[{"x":0.2,"y":1}]},{"x":1,"y":1,"cp":[{"x":0.3,"y":1}]}],
  258. duration: 650
  259. });
  260. }
  261. // disallow scrolling (on the scrollContainer)
  262. function noscroll() {
  263. if(!lockScroll) {
  264. lockScroll = true;
  265. xscroll = scrollContainer.scrollLeft;
  266. yscroll = scrollContainer.scrollTop;
  267. }
  268. scrollContainer.scrollTop = yscroll;
  269. scrollContainer.scrollLeft = xscroll;
  270. }
  271. init();
  272. })(window);
文章链接:https://www.sbkko.com/zoom-slider.html
文章标题:缩放幻灯片-Zoom Slider
文章版权:SBKKO 所发布的内容,部分为原创文章,转载请注明来源,网络转载文章如有侵权请联系我们!

点点赞赏,手留余香

给TA打赏
共0人
还没有人赞赏,快来当第一个赞赏的人吧!
    网页布局资源

    产品网格布局-Filterable Product Grid

    2017-11-15 20:05:20

    网页布局资源

    堆叠的页面导航-Page Stack Navigation

    2017-11-15 20:13:47

    0 条回复 A文章作者 M管理员
    肆意发布无意义灌水形式的评论,将被关小黑屋哦!
    欢迎您,新朋友,感谢参与互动!
      暂无讨论,说说你的看法吧
    个人中心
    购物车
    优惠劵
    今日签到
    私信列表
    搜索