简体   繁体   English

CSS3滑块过渡效果

[英]CSS3 slider transition effect

I have question about css slider transition. 我对CSS滑块过渡有疑问。

I want to make transition like Fade in L with transition code: 我想使用过渡代码像L中的Fade那样进行过渡:

{
    $Duration: 1200,
    x: 0.3,
    $During: {
        $Left: [0.3, 0.7]
    },
    $Easing: {
        $Left: $JssorEasing$.$EaseInCubic,
        $Opacity: $JssorEasing$.$EaseLinear
    },
    $Opacity: 2
}

from this page: http://www.jssor.com/development/tool-slideshow-transition-viewer.html 从此页面: http : //www.jssor.com/development/tool-slideshow-transition-viewer.html

But Im using responsiveslides: http://responsiveslides.com 但是我正在使用响应式幻灯片: http : //sensitiveslides.com

is there any way to implement this effect to responsiveslides? 有什么办法可以实现对响应幻灯片的这种效果?

I found this piece of code in responsiveslides js: 我在activeslides js中找到了这段代码:

  if (supportsTransitions) {
    $slide
      .show()
      .css({
        // -ms prefix isn't needed as IE10 uses prefix free version
        "-webkit-transition": "opacity " + fadeTime + "ms ease-out",
        "-moz-transition": "opacity " + fadeTime + "ms ease-out",
        "-o-transition": "opacity " + fadeTime + "ms ease-out",
        "transition": "opacity " + fadeTime + "ms ease-out"
      });
  }

Thanks for any help 谢谢你的帮助

Take a look at this code, maybe this can help you! 看一下这段代码,也许可以帮到您!

Code working here: http://codepen.io/anon/pen/EnmGI (check the checkbox) 在这里工作的代码: http : //codepen.io/anon/pen/EnmGI (选中复选框)

HTML 的HTML

<h1>Incredibly Basic Slider</h1>
<div id="slider">
  <ul id="imgs">
    <li>SLIDE 1</li>
    <li style="background: #aaa;">SLIDE 2</li>
    <li>SLIDE 3</li>
    <li style="background: #aaa;">SLIDE 4</li>
  </ul>  
</div>

<div class="slider_option">
  <input type="checkbox" id="checkbox">
  <label for="checkbox">Autoplay Slider</label>
</div> 

CSS 的CSS

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,600);  

html {
  border-top: 5px solid #fff;
  background: #58DDAF;
  color: #2a2a2a;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans';
}

h1 {
  color: #fff;
  text-align: center;
  font-weight: 300;
}

#slider {
  position: relative;
  overflow: hidden;
  margin: 20px auto 0 auto;
  border-radius: 4px;
}

#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  height: 200px;
  list-style: none;
}

#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 500px;
  height: 300px;
  background: #ccc;
  text-align: center;
  line-height: 300px;
}

a.control_prev, a.control_next {
  position: absolute;
  top: 40%;
  z-index: 999;
  display: block;
  padding: 4% 3%;
  width: auto;
  height: auto;
  background: #2a2a2a;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  opacity: 0.8;
  cursor: pointer;
}

a.control_prev:hover, a.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}

a.control_prev {
  border-radius: 0 2px 2px 0;
}

a.control_next {
  right: 0;
  border-radius: 2px 0 0 2px;
}

.slider_option {
  position: relative;
  margin: 10px auto;
  width: 160px;
  font-size: 18px;
}

JQUERY JQUERY

jQuery(document).ready(function ($) {

  $('#checkbox').change(function(){
    setInterval(function () {
       moveLeft();
    }, 3000);
  });

    var slideCount = $('#slider ul li').length;
    var slideWidth = $('#slider ul li').width();
    var slideHeight = $('#slider ul li').height();
    var sliderUlWidth = slideCount * slideWidth;

    $('#slider').css({ width: slideWidth, height: slideHeight });

    $('#slider ul').css({ width: sliderUlWidth, marginLeft: - slideWidth });

    $('#slider ul li:last-child').prependTo('#slider ul');

    function moveLeft() {
        $('#slider ul').animate({
            left: + slideWidth
        }, 200, function () {
            $('#slider ul li:last-child').prependTo('#slider ul');
            $('#slider ul').css('left', '');
        });
    };

    function moveRight() {
        $('#slider ul').animate({
            left: - slideWidth
        }, 200, function () {
            $('#slider ul li:first-child').appendTo('#slider ul');
            $('#slider ul').css('left', '');
        });
    };
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM