This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* material-design-lite - Material Design Components in CSS, JS and HTML | |
* @version v1.1.1 | |
* @license Apache-2.0 | |
* @copyright 2015 Google, Inc. | |
* @link https://github.com/google/material-design-lite | |
*/ | |
@charset "UTF-8"; | |
.visuallyhidden { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* animates the slider images so that when you hover | |
on an image the full width of image is animated | |
*/ | |
var imgParent, imgParentWidth, sizeDiff, sliderWidth; | |
$('.slick-slide img').hover(function() | |
{ | |
var imgWidth = $(this).innerWidth(); // actual width of hovered image | |
imgParent = $(this).parent(); // get the parent element of hovered image | |
imgParentWidth = imgParent.innerWidth(); // width of hovered iamge pared |
NewerOlder