Javascript.RU

Создать новую тему Ответ
 
Опции темы Искать в теме
  #1 (permalink)  
Старый 14.10.2012, 03:49
Аспирант
Отправить личное сообщение для SkaN Посмотреть профиль Найти все сообщения от SkaN
 
Регистрация: 27.08.2011
Сообщений: 50

Не работает слайдер jQuery UI
Дело в том, что я не сильно в нем разобрался и не очень понимаю реализацию, только в общих чертах. Скопировал пример с оф. сайта:
<!doctype html>

<html>
<head>
    <meta charset="utf-8" />
    <title>jQuery UI Slider - Slider scrollbar</title>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.0/themes/base/jquery-ui.css" />
    <script src="http://code.jquery.com/jquery-1.8.2.js"></script>
    <script src="http://code.jquery.com/ui/1.9.0/jquery-ui.js"></script>
    <link rel="stylesheet" href="/resources/demos/style.css" />
    <style>
        .scroll-pane { overflow: auto; width: 99%; float:left; }
        .scroll-content { width: 2440px; float: left; }
        .scroll-content-item { width: 100px; height: 100px; float: left; margin: 10px; font-size: 3em; line-height: 96px; text-align: center; }
        * html .scroll-content-item { display: inline; } /* IE6 float double margin bug */
        .scroll-bar-wrap { clear: left; padding: 0 4px 0 2px; margin: 0 -1px -1px -1px; }
        .scroll-bar-wrap .ui-slider { background: none; border:0; height: 2em; margin: 0 auto;  }
        .scroll-bar-wrap .ui-handle-helper-parent { position: relative; width: 100%; height: 100%; margin: 0 auto; }
        .scroll-bar-wrap .ui-slider-handle { top:.2em; height: 1.5em; }
        .scroll-bar-wrap .ui-slider-handle .ui-icon { margin: -8px auto 0; position: relative; top: 50%; }
    </style>
    <script>
        $(function() {
            //scrollpane parts
            var scrollPane = $( ".scroll-pane" ),
                    scrollContent = $( ".scroll-content" );

            //build slider
            var scrollbar = $( ".scroll-bar" ).slider({
                slide: function( event, ui ) {
                    if ( scrollContent.width() > scrollPane.width() ) {
                        scrollContent.css( "margin-left", Math.round(
                                ui.value / 100 * ( scrollPane.width() - scrollContent.width() )
                        ) + "px" );
                    } else {
                        scrollContent.css( "margin-left", 0 );
                    }
                }
            });

            //append icon to handle
            var handleHelper = scrollbar.find( ".ui-slider-handle" )
                    .mousedown(function() {
                        scrollbar.width( handleHelper.width() );
                    })
                    .mouseup(function() {
                        scrollbar.width( "100%" );
                    })
                    .append( "<span class='ui-icon ui-icon-grip-dotted-vertical'></span>" )
                    .wrap( "<div class='ui-handle-helper-parent'></div>" ).parent();

            //change overflow to hidden now that slider handles the scrolling
            scrollPane.css( "overflow", "hidden" );

            //size scrollbar and handle proportionally to scroll distance
            function sizeScrollbar() {
                var remainder = scrollContent.width() - scrollPane.width();
                var proportion = remainder / scrollContent.width();
                var handleSize = scrollPane.width() - ( proportion * scrollPane.width() );
                scrollbar.find( ".ui-slider-handle" ).css({
                    width: handleSize,
                    "margin-left": -handleSize / 2
                });
                handleHelper.width( "" ).width( scrollbar.width() - handleSize );
            }

            //reset slider value based on scroll content position
            function resetValue() {
                var remainder = scrollPane.width() - scrollContent.width();
                var leftVal = scrollContent.css( "margin-left" ) === "auto" ? 0 :
                        parseInt( scrollContent.css( "margin-left" ) );
                var percentage = Math.round( leftVal / remainder * 100 );
                scrollbar.slider( "value", percentage );
            }

            //if the slider is 100% and window gets larger, reveal content
            function reflowContent() {
                var showing = scrollContent.width() + parseInt( scrollContent.css( "margin-left" ), 10 );
                var gap = scrollPane.width() - showing;
                if ( gap > 0 ) {
                    scrollContent.css( "margin-left", parseInt( scrollContent.css( "margin-left" ), 10 ) + gap );
                }
            }

            //change handle position on window resize
            $( window ).resize(function() {
                resetValue();
                sizeScrollbar();
                reflowContent();
            });
            //init scrollbar size
            setTimeout( sizeScrollbar, 10 );//safari wants a timeout
        });
    </script>
</head>
<body>

<div class="scroll-pane ui-widget ui-widget-header ui-corner-all">
    <div class="scroll-content">
        <div class="scroll-content-item ui-widget-header">1</div>
        <div class="scroll-content-item ui-widget-header">2</div>
        <div class="scroll-content-item ui-widget-header">3</div>
        <div class="scroll-content-item ui-widget-header">4</div>
        <div class="scroll-content-item ui-widget-header">5</div>
        <div class="scroll-content-item ui-widget-header">6</div>
        <div class="scroll-content-item ui-widget-header">7</div>
        <div class="scroll-content-item ui-widget-header">8</div>
        <div class="scroll-content-item ui-widget-header">9</div>
        <div class="scroll-content-item ui-widget-header">10</div>
        <div class="scroll-content-item ui-widget-header">11</div>
        <div class="scroll-content-item ui-widget-header">12</div>
        <div class="scroll-content-item ui-widget-header">13</div>
        <div class="scroll-content-item ui-widget-header">14</div>
        <div class="scroll-content-item ui-widget-header">15</div>
        <div class="scroll-content-item ui-widget-header">16</div>
        <div class="scroll-content-item ui-widget-header">17</div>
        <div class="scroll-content-item ui-widget-header">18</div>
        <div class="scroll-content-item ui-widget-header">19</div>
        <div class="scroll-content-item ui-widget-header">20</div>
    </div>
    <div class="scroll-bar-wrap ui-widget-content ui-corner-bottom">
        <div class="scroll-bar"></div>
    </div>
</div>


</body>
</html>

Все супер, все работает! Пытаюсь перенести на свою систему - нифига. Вот мой код:
<div class="scroll-pane ui-widget ui-widget-header ui-corner-all">
                <div class="scroll-content">
                    <div class="grid_4 news_text">
                        <span class="date">29.12.04</span>
                        <h1>Рекламные баннеры</h1>
                        <img src="img/news1.jpg">
                        <p>По многочисленным просьбам участников нашими дизайнерами разработаны несколько вариантов рекламных баннеров, которые уже доступны в разделе "Пригласить друзей".</p>
                        <a href="#" class="read_more">Read more</a>
                    </div>
                    <div class="grid_4 news_text">
                        <span class="date">29.12.04</span>
                        <h1>Обновление ссылок</h1>
                        <img src="img/news2.jpg">
                        <p><i>Уважаемые участники!</i></p>
                        <p>Ежедневно вами отправляется множество приглашений в систему. Закономерным результатом такой работы является попадание ссылок в спам-листы</p>
                        <a href="#" class="read_more">Read more</a>
                    </div>
                    <div class="grid_4 news_text">
                        <span class="date">29.12.04</span>
                        <h1>Караул! Вас взламывают!</h1>
                        <img src="img/news3.jpg">
                        <p>Тут я устал писать речь, поэтому...</p>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam a lacus purus, ullamcorper fringilla nisl. Vivamus volutpat porta leo, id vehicula velit dignissim at. Nulla ultrices pharetra luctus. Sed at mi sed lacus volutpat interdum ac.</p>
                        <a href="#" class="read_more">Read more</a>
                    </div>
                    <div class="grid_4 news_text">
                        <span class="date">29.12.04</span>
                        <h1>Караул! Вас взламывают!</h1>
                        <img src="img/news3.jpg">
                        <p>Тут я устал писать речь, поэтому...</p>
                        <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam a lacus purus, ullamcorper fringilla nisl. Vivamus volutpat porta leo, id vehicula velit dignissim at. Nulla ultrices pharetra luctus. Sed at mi sed lacus volutpat interdum ac.</p>
                        <a href="#" class="read_more">Read more</a>
                    </div>
                </div>

                <div class="scroll-bar-wrap ui-widget-content ui-corner-bottom">
                    <div class="scroll-bar"></div>
                </div>
            </div>

Код:
.scroll-pane { overflow: auto; width: 99%; float:left; }
.scroll-bar-wrap { clear: left; padding: 0 4px 0 2px; margin: 0 -1px -1px -1px; }
.scroll-bar-wrap .ui-slider { background: url("../img/news_scrollbar.png") top no-repeat; border:0; height: 2em; margin: 0 auto; width: 432px; }
.scroll-bar-wrap .ui-handle-helper-parent { position: relative; width: 100%; height: 100%; margin: 0 auto; }
.scroll-bar-wrap .ui-slider-handle { top:.2em; height: 1.5em; }
.scroll-bar-wrap .ui-slider-handle .ui-icon { background: url("../img/icons/news_scrollbar_button.png") top no-repeat; height: 20px; width: 20px; position: absolute;  }
Функция JS та же. Кое-как я смог стилизовать сам слайдер, но при нажатии на ползунок "салазка" тупо пропадает...
Знающие люди, помогите плз...
Ответить с цитированием
Ответ



Опции темы Искать в теме
Искать в теме:

Расширенный поиск


Похожие темы
Тема Автор Раздел Ответов Последнее сообщение
есть ли резиновый слайдер контента на jQuery Enxiro jQuery 10 28.02.2014 12:15
jQuery Click() не работает на объекте, созданном Ajax vovabigov jQuery 13 09.09.2012 14:25
Help! Не работает jQuery shorshor jQuery 3 09.08.2012 11:53
Не работает анимация jquery hugi jQuery 1 30.08.2010 20:25
jQuery не работает ни в IE8 ни в Firefox Jon Events/DOM/Window 7 09.01.2010 23:39