0

1 つの Web ページに 2 つの nivo スライダーを挿入する方法の dev7 studio の例からコードをコピーしましたが、最初のスライダーで矢印のみを使用する方法など、各スライダーの個々の設定を微調整する方法がわかりません。スライダーは箇条書きのみを使用します。また、矢印と箇条書きの位置に関して、各スライダーの高さと幅をどのように調整しますか。

style.css は次のとおりです。

/*=================================*/
   /* Nivo Slider Demo
   /* November 2010
   /* By: Gilbert Pellegrom
   /* http://dev7studios.com
   /*=================================*/

   /*====================*/
   /*=== Reset Styles ===*/
   /*====================*/
   html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-weight:inherit;
    font-style:inherit;
    font-size:100%;
    font-family:inherit;
    vertical-align:baseline;
}
body {
    line-height:1;
    color:black;
    background:white;
}
table {
    border-collapse:separate;
    border-spacing:0;
}
caption, th, td {
    text-align:left;
    font-weight:normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:"";
}
blockquote, q {
    quotes:"" "";
}
/* HTML5 tags */
header, section, footer,
aside, nav, article, figure {
    display: block;
}

/*===================*/
/*=== Main Styles ===*/
/*===================*/
body {
    font:14px/1.6 Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;
    color:#333;
    background:#eee;
}

a, a:visited {
    color:blue;
    text-decoration:none;
}
a:hover, a:active {
    color:#000;
    text-decoration:none;
}

#dev7link {
    position:absolute;
    top:0;
    left:50px;
    background:url(images/dev7logo.png) no-repeat;
    width:60px;
    height:67px;
    border:0;
    display:block;
    text-indent:-9999px;
}

.default #slider {
    margin:100px auto 0 auto;
    width:960px; /* Make sure your images are the same size */
    height:310px; /* Make sure your images are the same size */
}
.default #slider2 {
    margin:100px auto 0 auto;
    width:280px; /* Make sure your images are the same size */
    height:65px; /* Make sure your images are the same size */
}
slider-wrapper,
lider-wrapper {
    margin-top:150px;
}

/*====================*/
/*=== Other Styles ===*/
/*====================*/
.clear {
    clear:both;
}

これが default.css です。

/*
Skin Name: Nivo Slider Default Theme
Skin URI: http://nivo.dev7studios.com
Skin Type: flexible
Description: The default skin for the Nivo Slider.
Version: 1.0
Author: Gilbert Pellegrom
Author URI: http://dev7studios.com
*/

.default .nivoSlider {
    position:relative;
    background:#fff url(loading.gif) no-repeat 50% 50%;
    margin-bottom:50px;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
}
.default .nivoSlider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
}
.default .nivoSlider a {
    border:0;
    display:block;
}

.default .nivo-controlNav {
    position:absolute;
    left:70px;
    bottom:25px;
    margin-left:-40px; /* Tweak this to center bullets */
    z-index:300;

}



.default .nivo-controlNav a {
    display:block;
    width:22px;
    height:22px;
    background:url(bullets.png) no-repeat;
    text-indent:-9999px;
    border:0;
    margin-right:1px;
    float:left;

}








.default .nivo-controlNav a.active {
    background-position:0 -22px;
}

.default .nivo-directionNav a {
    display:block;
    width:30px;
    height:30px;
    background:url(arrows.png) no-repeat;
    text-indent:-9999px;
    border:0;
}
.default a.nivo-nextNav {
    background-position:-30px 0;
    right:15px;
}
.default a.nivo-prevNav {
    left:15px;
}

.default .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.default .nivo-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}
.default .nivo-caption a:hover {
    color:#fff;
}
4

2 に答える 2

0

Webページで複数のスライダーを使用するには、最初に#ID要素を.CLASSESHTMLとCSSの両方でに変更する必要があります。これは、現在複数のスライダーを作成しているためです...

スライダーの外観をそれぞれ変更する場合、これはHTMLインラインスタイルと、スキン(デフォルト、明るい、暗いなど)の出力方法に関連します。demo.htmlこれをファイル内の目的のスキンに変更するだけです。次のようになります。

div class = "slider-wrapper theme-default"

ここで、「theme-default」をたとえばtheme-lightに置き換えます。

デフォルトのスキンスライダーの箇条書きを変更するには、次の操作を行います。

.default.nivo-controlNav`および.default.nivo-controlNava {

デフォルトのスキンスライダーの矢印を変更するには、次の操作を行います。

.default .nivo-directionNav a {

于 2013-02-28T14:38:18.713 に答える
0

各スライダーのIDは異なる必要があり、初期化と設定はそれぞれ個別に書き込むことができます。

<div id="slider" class="nivoSlider">
    <img src="slide1.jpg" alt="" />
    <img src="slide2.jpg" alt="" />
    <img src="slide3.jpg" alt="" />
    <img src="slide4.jpg" alt="" />
</div>
<script type="text/javascript">
    $('#slider').nivoSlider({
        effect: 'slideInLeft',          // Specify sets like: 'fold,fade,sliceDown'
        slices: 1,                      // For slice animations
        boxCols: 8,                     // For box animations
        boxRows: 4,                     // For box animations
        animSpeed: 500,                 // Slide transition speed
        pauseTime: 3000,                // How long each slide will show
        startSlide: 0,                  // Set starting Slide (0 index)
        directionNav: true,             // Next & Prev navigation
        controlNav: true,               // 1,2,3... navigation
        controlNavThumbs: false,        // Use thumbnails for Control Nav
        pauseOnHover: true,             // Stop animation while hovering
        manualAdvance: false,           // Force manual transitions
        prevText: 'Prev',               // Prev directionNav text
        nextText: 'Next',               // Next directionNav text
        randomStart: false,             // Start on a random slide
        beforeChange: function(){},     // Triggers before a slide transition
        afterChange: function(){},      // Triggers after a slide transition
        slideshowEnd: function(){},     // Triggers after all slides have been shown
        lastSlide: function(){},        // Triggers when last slide is shown
        afterLoad: function(){}         // Triggers when slider has loaded
    });
</script>

各 jQuery 関数の ID 部分は、HTML で各スライダーを識別するために使用した 2 つの異なる ID に従って異なる必要があります。

$('#slider').nivoSlider({

つまり、このコードのコピーが 2 つ (各スライダーに 1 つ) あることになります。

CSS ファイルで参照されるこれらの ID を介して、スライダーごとに異なる CSS スタイルを取得できます。スライダー コンテナーの .nivoSlider クラスは、スライダーが機能するために必要な一般的なスタイルに接続されているため、両方のインスタンスで共通であることに注意してください。

于 2014-06-08T15:51:53.750 に答える