如何最小化滑块中的缩放效果

时间:2017-06-28 18:33:26

标签: javascript jquery

我正在做一个网站并且正在使用此滑块来访问网站http://www.jqueryscript.net/slideshow/Lightweight-Background-Slideshow-Plugin-with-jQuery-CSS3-pureSlider.html ...但我无法控制此滑块的缩放速度。我尝试了各种数字animDuration:js文件中的8000但它没有帮助......任何人都可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

在文件pureslider.css中,根据需要更改transition-duration属性的值。



.stage .slide.on {
	transition-property: opacity, transform, z-index;
	transition-duration: 1000ms, 1000ms, 10ms;
	transition-function: linear;
	transition-delay: 0ms;
	transform: scale(1);
	opacity: 1;
	z-index: 10;
}