Click here to Skip to main content
16,013,440 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
my image slider is not working in html5 css3 image partially showing n not sliding also
CSS
div#captioned-gallery { width:2000px; overflow: hidden;animation-play-state:running }
    figure { margin: 0; }
    figure.slider {
    position: relative; width: 2000px;

    font-size: 0;animation-play-state:running ;animation-direction:normal ;animation:infinite;

   display:inline-block;
    }
    figure.slider figure {
    width: 200px; height: 600px;
    display: inline-block;
        position: inherit;
    }
    figure.slider img { width: 2000px; height: 600px; }
       figure.slider figure figcaption {
           position: absolute;
           bottom: -3.5rem;
           background: rgba(0,0,0,0.3);
           color: #fff;
           width: 2000px;
           font-size: 2rem;
           padding: .6rem;
           transition: .5s bottom;
       }
figure.slider figure:hover figcaption { bottom: 0; }


    </style>
Posted
Comments
Kornfeld Eliyahu Peter 1-Jun-15 7:50am    
'not working' is a poor definition of any problem!
What happening and what you expected?
There is any error? What? Where?
If there are any issues listed on console, try to solve them.
Member 11507028 2-Jun-15 10:20am    
can u help me with this dear?
Which slider you are using? Do you have online links? Can you create jsfiddle demo?
Member 11507028 3-Jun-15 2:38am    
noo image sliding using html5

1 solution

Quote:
noo image sliding using html5
Please refer - HTML5 Responsive Image Slider With Captions[^]. Read and try.
 
Share this answer
 

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