I have a website that has a Jssor slider with a horizontal line of thumbnails below it (using jssor slider thumbnail navigator skin 07). As far as I can tell, the left CSS position of each div sketch in thumbnavigator is dynamically inserted by javascript.
Thumbnail Div 1 CSS
element.style { width: 202px; height: 102px; top: 0px; left: 0px; position: absolute; overflow: hidden; transform: perspective(2000px); }
Thumbnail Div 2 CSS
element.style { width: 202px; height: 102px; top: 0px; left: 217px; position: absolute; overflow: hidden; transform: perspective(2000px); }
Thumbnail Div 3 CSS
element.style { width: 202px; height: 102px; top: 0px; left: 434px; position: absolute; overflow: hidden; transform: perspective(2000px); }
I resized the thumbnails using my own CSS, but the positioning remains the same because each div is dynamically generated without a separate CSS class or identifier for the link. Thus, if I rewrite the position of the left CSS position, it does this for all sections of the thumbnails, and they simply stack over each other.
I would like to know what I need to change (in javascript or CSS) in order to change the number of pixels or the percentage of left positioning, each miniature div is assigned so that the new size thumbnails match my slider.
source share