Как изменить слайдер? Есть ли возможность сделать это таким образом? - PullRequest
0 голосов
/ 07 сентября 2018

как сделать 5 фотографий вместо 3, как изменить их размер, как сделать так, чтобы они автоматически менялись, потому что теперь мне нужно нажать кнопку воспроизведения, чтобы начать?

html:

<script>
    $(function () {
        // Unstyled Example
        $.monte('#example1');

        // Styled Buttons Example
        // (see the CSS in the above style block)
        $.monte('#example2', {auto:false});

        // Callback Example
        // Format and append the HTML:
        $('#example3 > img').each(function(){
            $(this)
                .wrap('<div style="position:relative"/>')
                .parent()
                .append('<div><p>' + $(this).attr('alt') + '</p></div>')
                .append('<img src="frame.png" alt="" class="frame"/>');
        });
        // Hide the text on all but the center slide:
        $('#example3 div div').css({opacity: 0}).eq(0).css({opacity: 0.8});
        // Using the callbacks to reveal and hide the text:
        $.monte('#example3', {
            auto:false,
            callbackIn: function () {
                $(this[0]).find('div').animate({opacity: 0.8}, 450);
            },
            callbackAway: function () {
                $(this[0]).find('div').animate({opacity: 0}, 450);
            }
        });
    });
</script>

Вот ссылка на источник, где я его нашел [https://github.com/paizai/monte][1]

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...