Adding titles under the thumbnails in my vimeo player using json and javascript and css -


if inspect element on page can see code.

no titles under thumbnails

<div id="player_carousel_wrap" style="width: 800px; height: 110px; overflow: hidden; position: absolute; left: 60px; top: 20px;"> 

vimeo titles, how see it

if edit height 160px or take out overflow: hidden; can titles.

the problem code above not on actual page/file, when inspect element. presumably because it's json?

i have vimeo carousel player works easy. can view here: http://jsfiddle.net/3hpal/1296/

using json , javascript

any appreciated. thank you.

add in css: #player_carousel_wrap { height:160px !important }

or modify style using javascript after vimeo player initialized.

the clean way:

after looking through plugin, setting size higher thumbnail height should best way. http://jsfiddle.net/scottux/3hpal/1298/

    'carousel': {         size:160,         offsetx: 60,         offsety: 20,         visible: 2,         autoplay: true,           thumb:{             quality:'large',             height:120         }     } 

```


Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -