Creating photo album with jQuery Chop Slider

Creating photo album with jQuery Chop Slider

16 87030
creating photo album with Chop Slider

Creating photo album with jQuery Chop Slider

Today I will tell you about new impressive jQuery slider – Chop. This slider have already had quite 200 different transition effects. Here are many 2D and 3D effects. Plus, here are you can find even few NonCss3 effects (to old IE browsers) and five effects for mobile browsers (for cellphones). Plus, we can create our own new transitions (if you want).

Here are links to demo and downloadable package:

Live Demo

[sociallocker]

download in package

[/sociallocker]


Ok, lets download the example files and goto coding !


Step 1. HTML

index.html

Here are HTML source code of our Chop photo slider.

<!DOCTYPE html>
<html lang="en" >
    <head>
        <meta charset="utf-8" />
        <title>Creating photo album with jQuery Chop Slider | Script Tutorials</title>
        <link href="css/layout.css" rel="stylesheet" type="text/css" />
        <link href="css/chopslider.css" rel="stylesheet" type="text/css" />
        <script src="http://code.jquery.com/jquery-latest.min.js"></script>
        <script src="js/jquery.id.chopslider-2.2.0.free.min.js"></script>
        <script src="js/jquery.id.cstransitions-1.2.min.js"></script>
        <script src="js/main.js"></script>
    </head>
    <body>
        <header>
            <h2>Creating photo album with jQuery Chop Slider</h2>
            <a href="https://script-tutorials.com/creating-photo-album-with-jquery-chop-slider/" class="stuts">Back to original tutorial on <span>Script Tutorials</span></a>
        </header>
        <div class="container">
            <div class="wrapper">
              <div class="s-shadow-b"></div>
              <a id="slide-next" href="#"></a>
              <a id="slide-prev" href="#"></a>
              <div id="slider">
                <div class="slide cs-activeSlide"> <img src="slide_images/pic1.jpg" width="900" height="300" alt="photo #1" /> </div>
                <div class="slide"> <img src="slide_images/pic2.jpg" width="900" height="300" alt="photo #2" /> </div>
                <div class="slide"> <img src="slide_images/pic3.jpg" width="900" height="300" alt="photo #3" /> </div>
                <div class="slide"> <img src="slide_images/pic4.jpg" width="900" height="300" alt="photo #4" /> </div>
                <div class="slide"> <img src="slide_images/pic5.jpg" width="900" height="300" alt="photo #5" /> </div>
                <div class="slide"> <img src="slide_images/pic6.jpg" width="900" height="300" alt="photo #6" /> </div>
                <div class="slide"> <img src="slide_images/pic7.jpg" width="900" height="300" alt="photo #7" /> </div>
              </div>
              <div class="pagination">
                <span class="slider-pagination"></span>
                <span class="slider-pagination"></span>
                <span class="slider-pagination"></span>
                <span class="slider-pagination"></span>
                <span class="slider-pagination"></span>
                <span class="slider-pagination"></span>
                <span class="slider-pagination"></span>
              </div>
              <div class="slide-descriptions">
                <div class="sl-descr">Thailand, There are very many different ATM in one place</div>
                <div class="sl-descr">All city colour is bright, nothing black</div>
                <div class="sl-descr">Floating market. Shopping on river</div>
                <div class="sl-descr">Sunset on Koh Phangan island</div>
                <div class="sl-descr">Shortly before sunset</div>
                <div class="sl-descr">Good sculpture on Koh Samui island</div>
                <div class="sl-descr">That is such cute barmaid you can see here</div>
              </div>
              <div class="caption"></div>
            </div>
        </div>
    </body>
</html>

All slides wrap into own DIV parent elements with class name ‘slide’. Pay attention, that we have to create same amount of slider-pagination elements as amount of slider. Same for description.

Step 2. CSS

css/layout.css and css/chopslider.css

First file is layout of our demo page. Second one is CSS file of Chop slider. You can customize it as you like. Right now it contain next styles:

.wrapper {
        position:relative;
        margin-left:auto;
        margin-right:auto;
        width:960px;
        height:300px;
        display:block;
        padding-top:150px;
        padding-bottom:120px;
        background:url(../images/podium.png) no-repeat bottom;
        z-index:2;
}
.wrapper2 {
        position:relative;
        margin-left:auto;
        margin-right:auto;
        margin-top:20px;
        width:960px;
        height:300px;
        display:block;
        z-index:2;
        text-align:center;
        padding-bottom:50px;
}
.wrapper2 a {
        display:inline-block;
        padding:0px 5px;
        background:#fff;
        border:1px solid #ccc;
        border-radius:3px;
        text-decoration:none;
        margin:0px 5px;
}
.wrapper2 .active-transition {
        background:#222;
        color:#fff;
}
/*---------- Slider ----------- */
/*---------- Left and Right Triggers ----------- */
#slide-prev {
        position:absolute;
        width:21px;
        height:33px;
        bottom:39px;
        left:26px;
        z-index:4;
        background:url(../images/sl-control.png) left top no-repeat;
}
#slide-next {
        position:absolute;
        width:21px;
        height:33px;
        bottom:39px;
        right:26px;
        z-index:4;
        background:url(../images/sl-control.png) left bottom no-repeat;
}
/*---------- Shadow, just for styling ----------- */
.s-shadow-b{
        background:url(../images/shadow.png) no-repeat top;
        width:876px;
        height:55px;
        position:absolute;
        left:42px;
        bottom:60px;
        z-index:1;
}
/*---------- Main Slider Container----------- */
#slider {
        width:900px;
        height:300px;
        margin-left:auto;
        margin-right:auto;
        position:relative;
        z-index:2;
        display:block;
}
/* Every slide must be hidden by default */
.slide { display:none; }
/*
   And only the slide with "cs-activeSlide" class must be visible!
   !Reserved Class name. Required class!
*/
.cs-activeSlide { display:block; }
/* Container with caption's text. Must be hidden */
.slide-descriptions {
        display:none;
}
/* Container with caption, must be hidden by default */
.caption {
        background: url("../images/d-bg.png") repeat scroll 0 0 transparent;
    color: #FFFFFF;
    display: none;
    height: 280px;
    padding: 20px;
    position: absolute;
    right: 40px;
    top: 140px;
    width: 180px;
    z-index: 3;
}
.full-3D {
        right: 40px;
    top: 580px;
    width: 840px;
        height:20px;
}
/* Container with Pagination buttons */
.pagination {
        bottom: 50px;
    left: 345px;
    margin-top: 50px;
    position: absolute;
    text-align: center;
}
.slider-pagination {
        display:inline-block;
        width:15px;
        height:10px;
        background:url(../images/navi.png) no-repeat left bottom;
        margin:0 10px;
        cursor:pointer;
        position:relative;
        z-index:200;
}
/* This is a required class for the "Active" pagination button. ! Reserved Class Name ! */
.cs-active-pagination {
        background:url(../images/navi.png) no-repeat left top;
}
/* Multiple SLiders */
.slider-2 {
        padding-top:0;
        margin-top:20px;
}
#slider-1, #slider-2 {
        width:900px;
        height:300px;
        margin-left:auto;
        margin-right:auto;
        position:relative;
        z-index:2;
        display:block;
}
.cs-activeSlide-2 {
        display:block
}
.cs-active-pagination-2 {
        background:url(../images/navi.png) no-repeat left top;
}

Step 3. JS

js/jquery.id.chopslider-2.2.0.free.min.js and js/jquery.id.cstransitions-1.2.min.js

These are two JS files in this slider. We just have to include it to our page.

js/main.js

jQuery(function(){
    $("#slider").chopSlider({
        /* slide element */
        slide : ".slide",
        /* controlers */
        nextTrigger : "a#slide-next",
        prevTrigger : "a#slide-prev",
        hideTriggers : true,
        sliderPagination : ".slider-pagination",
        /* captions */
        useCaptions : true,
        everyCaptionIn : ".sl-descr",
        showCaptionIn : ".caption",
        captionTransform : "scale(0) translate(-600px,0px) rotate(45deg)",
        /* autoplay */
        autoplay : true,
        autoplayDelay : 5000,
        /* for Browsers that support 3D transforms */
        t3D : csTransitions['3DFlips']['random'], /* all will be picked up randomly */
        t2D : [ csTransitions['multi']['random'], csTransitions['vertical']['random'] ],
        noCSS3 : csTransitions['noCSS3']['random'],
        mobile : csTransitions['mobile']['random'],
        onStart: function(){},
        onEnd: function(){}
    })
})

This is initialization of Chop slider. I set all effects (transitions) to random to display different effects to different browsers. Also I have enabled autoplay and display captions (descriptions).

Here you can find full documentation for this slider (with detailed explanation of all params).

Step 4. Images

For slider interface we are using few images (caption-bg.png, d-bg.png, navi.png, podium.png, shadow.png and sl-control.png). All these images available in our package. All slider images is in ‘slide_images’ folder.


Live Demo

Conclusion

I hope that today we made new nice photo slider. Good luck in your projects!

SIMILAR ARTICLES


16 COMMENTS

    • ???, ?????? ??????????? ???, ????????????, ?? ??? ???????????? ????? (??? ???????). ????? ????????? ?????????? ????? ????? ?? ??????????? ?????.

      • ????? ?? ??????? ???????????? ?? ????? ????????, ?? ????? ???? ????? ?????????. ????? ?? ???????????? ???? ???????? ???????

  1. ??????? ???????. ??????????, ????? ?? ???????????? ??? ??????????? ??????? ??????? (????., 980?800)? ????????? ? CSS ?? ???????? ? ???????? ??????????. ???????? ???????? ???????? ????? ?????.

    • ???????????? ?????, ????????? ?? ?? ????? ???????? ???????? ??????? ? DOM ?????? (html)?
      ??? ?????? ? CSS ?????????? ? ????? ?????? – ?? ?????? ?????? ????????? ? ???? ????? – ?????? ???????? ??? ??? ?-???? ?????????? ????????????.

  2. I changed in #slider class width like 677 px in ‘css/chopslider.css’ , after that demo slider effect remove and came new effect..but i want same effect with slider width:677px; is it possible?

    • Hi neelam,
      Besides of changing width for #slider class, don’t forget that you have to use smaller images

  3. ???????? ??????! “?????????” ??? ? ????? ?? Joomla 3.
    ????????????, ??? ? ???????? IE7-10 ?? ?? ????????. ?? ?????????? ???????

Leave a Reply to sasi Cancel reply