English 中文(简体)
1. 创造垂直 当时有2个斜体的小型螺旋体
原标题:Create Vertical Owl slider with 2 itmes at a time

我正在使用<代码>。 • Owl carousel, to establish slider I出了一个横向梯度,但我需要一个vertical,一个,同时还有三个项目。

“vertical_slider”/

我找不到答案或相关职位。

最新情况:

I used slick slider that time and that was working as i want. But in owl, I am not able to do that.

问题回答

阁下:

      .item {
            transform: rotate(-90deg);
        }
      .owl-carousel{
             transform: rotate(90deg);
        }

在js加上:

        $( .owl-carousel ).owlCarousel({ 
           loop: true,
           items: 3,
           animateOut:  slideOutUp ,
           animateIn:  slideInUp 
         });

这里是一部具有垂直的家禽:

https://codepen.io/thirdender/pen/aOYGb”rel=“nofollow noreferer”>https://codepen.io/thirdender/pen/aOYGb

$(".owl-carousel").owlCarousel({
  loop: true,
  autoplay: true,
  items: 1,
  nav: true,
  autoplayHoverPause: true,
  animateOut:  slideOutUp ,
  animateIn:  slideInUp 
});




相关问题
Center a list vertically in a div

I want my navigation links to be in the middle of the parent div, vertically. How do I do that? HTML: <div id="nav"> <ul> <li><a href="#">Link</a></li>...

Vertially aligning a DIV on the entire page

I have found a few techniques used for vertically aligning a DIV on the page, most of them outlined here: http://blog.themeforest.net/tutorials/vertical-centering-with-css/ But, the project I m ...

Centering element inside an element (jQuery)

<div class="preview"> <span class="center">This will be centered</div> </div> Preview has fixed width (120x120), but span may contain anything (image, text). How do I center ...

WPF 组合

一些人能够帮助我理解世界森林论坛的紧密协调。 我经常遇到一些问题,我想控制一个地区,但我从来不理解我应该把哪一个层次上说得什么。

CSS boxes will not float from lower right corner

I ve been searching for this solution for a while now... [bla bla... google.. bla]... I have created an example where I m almost there, but not quite: http://www.mikael-sandbox.com/puzzlecss/ What ...

vertical align for text fields

how can I align (vertically) some text input fields with CSS? eg in the following: <form action= <?= $_SERVER[ PHP_SELF ]; ?> method= post > <p><label for= username ...

热门标签