Click here to Skip to main content
15,884,237 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
<style>

CSS
.bxslider
{
    width:500px;
    height:500px;
    overflow:hidden;
    position:absolute;


}
.style17
 {

width: 800px;
height: 400px;
position:relative;

}

#next {
     width:10px;
    height:10px;
    z-index:99;
    cursor:pointer;
    text-align:center;
    line-height:50px;
    position:absolute;
    z-index:50;
     left:0;
    top:200px;

    opacity:.3;


}
#prev {
     width:10px;
    height:10px;
    z-index:50;
    cursor:pointer;
    text-align:center;
    line-height:50px;
    position:absolute;
    z-index:99;
     right:20px;
    top:200px;

    opacity:.3;

}
.style17:hover #next
 {
    opacity: 1;
    transition: all .5s ease-out;
}
.style17:hover #prev
 {
    opacity: 1;
    transition: all .5s ease-out;
}





</style>

XML
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<!-- bxSlider Javascript file -->
<script src="jquery.bxslider.min.js"></script>
<!-- bxSlider CSS file -->

<link href="jquery.bxslider.css" rel="stylesheet" />

     <script>
         $(function () {
             $(".bxslider").bxslider({
                 
             });
         });
  </script>


XML
<div class="style17">

             <div id="next"><img src="images/Alarm-Arrow-Left-icon.png"></div>
             <div id="prev"><img src="images/Alarm-Arrow-Right-icon.png"></div>

                  <div  class="bxslider">

                   <img src="images/1.jpg" >
                   <img src="images/2.jpg" >
                   <img src="images/3.jpg" >
                   <img src="images/1.jpg" >

                   </div>

         </div>
Posted
Updated 13-Aug-14 0:59am
v2
Comments
SteveyJDay 13-Aug-14 9:14am    
What's the problem?
SeeSharp2 30-Jul-21 13:25pm    
Do you want something?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900