Slider like vimeo in asp.net -
Slider like vimeo in asp.net -
in database have 3 categories , each category has videos. want is, vimeo.com/watch, create slider each row has 4 videos/images. got confused didn't create algorithm that. i'm using bootstrap carousel.
short explanation:
category1 image1 image2 image3 image4 > (other images appear when click next) category2 image1 image2 image3 image4 > (other images appear when click next) category3 image1 image2 image3 image4 > (other images appear when click next)
if understand correctly need that.
foreach (var c in categories) { // append html category image , name int = 0; foreach (var v in c.videos) { if (i % 4 == 0 && != 0) { // means begin new row 4 columnd } else { // append html video or image or whatever want add together ... } i++; } }
asp.net slider
Comments
Post a Comment