Results 1 to 3 of 3

Thread: 3d carousel css problems

  1. #1
    Join Date
    May 2014
    Posts
    203
    Thanks
    28
    Thanked 5 Times in 5 Posts

    Default 3d carousel css problems

    I have a 3d carousel i'm working on as an option to the one i posted in the javascript area. It has nearly everything i want except it isn't responsive design and the carousel images are not linkable. what am i missing? i keep encountering this in 3d carousels.

    here's the script (the description of it)
    http://www.joezimjs.com/javascript/h...nd-roundabout/

    the actual demo
    http://www.joezimjs.com/demos/roundabout-demo/

  2. #2
    Join Date
    May 2014
    Posts
    203
    Thanks
    28
    Thanked 5 Times in 5 Posts

    Default

    i solved the image link problem with this

    Code:
    <script>function imageClick(url) {
        window.location = url;
    }</script>
    and then put this in the image tag

    Code:
    onclick="imageClick('http://etc... ')"
    any suggestions on how to make it responsive? i put a background image behind the carousel, but to do so, i had to make it a normal image src at the top of the body, with 100% width, and then make another div with absolute positioning to position the carousel on top of the background. i am not sure but that may have fudged up the ability to make it responsive, since i had to nest the carousel div inside the new div to position it? i dunno, i have a suspicion it's the css for height and width as some of the parameters are resisting change into percentage. for some reason, it wouldn't let me put the background image in the css. it acted like i hadn't made any changes. this is the css for the background. i have removed the background image from it, since it wasn't showing up. is it overriding the background image?

    Code:
    body{background:#000C3A; color:#eee;}
    i set several of the parameters as percentages but some just don't want to be anything but pixels. for example

    Code:
    #carousel-descriptions {
    			list-style:none;
    			display:block;
    			width:850px;
    			margin:1% auto;
    			padding:0;
    if i touch the 850px the whole carousel becomes thin and stretched out, even at 100% or even very small, like 20%. i gave the images themselves, in their image tags, a percentage width, but that is being overridden by the styling for the image holders, i think. so the carousel images are not responsive as a result because the css for the image holders is also in px and becomes thin and stretched when i change it to percentage. i can set the width in pct but not the height.
    here it is

    Code:
    .roundabout-holder {
    			padding: 0;
    			height:395px;
    			width: 70%; 
    			margin: 0 auto;
    what's causing that? i have tinkered with all the parameters in an attempt to isolate the culprit, but i'm stumped.
    Last edited by jundo12; 05-20-2015 at 03:48 AM.

  3. #3
    Join Date
    May 2014
    Posts
    203
    Thanks
    28
    Thanked 5 Times in 5 Posts

    Default whats the easiest way to

    what's the easiest way to make this image carousel responsive? it's a mix of css and javascript but all the parameters are in px not %.
    http://www.joezimjs.com/demos/roundabout-demo/

Similar Threads

  1. 3d image carousel problems
    By jundo12 in forum JavaScript
    Replies: 0
    Last Post: 05-19-2015, 04:42 AM
  2. Step Carousel problems
    By Dramatic in forum Dynamic Drive scripts help
    Replies: 6
    Last Post: 02-16-2010, 04:40 AM
  3. carousel problems. what am i doing wrong??
    By Puccini in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 09-09-2009, 08:58 AM
  4. Problems with step carousel in IE
    By mastubbs in forum Dynamic Drive scripts help
    Replies: 1
    Last Post: 03-09-2009, 09:09 PM
  5. Carousel I Problems
    By dp08 in forum Dynamic Drive scripts help
    Replies: 5
    Last Post: 04-09-2007, 02:28 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •