[Pro] carousel rotation

is there a way to rotate the carousel container itself?
the pane i know, but the container ? ( if this is the right description)
or lets expand this, is there a code or way to rotate html objects?
any ideas?
thanx in advance
Sly


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

When you say rotate, do you mean literally rotate, as in “turn around an axis”? Or are you hoping to have more than one carousel effect appear in a single space on the page?

If the latter, I have to warn you – unless you are only flipping through HTML text, your page is going to get very heavy, very fast. All of the content of all of the panes (and carousels) is loaded into the page itself, nothing is loaded later after the page loads. The more images you add but do not show, the more slowly your page will appear on screen when a new visitor arrives there. (Previous visitors will have some or all of the content still in their cache, which is why the page may appear to load acceptably to you when you’re testing it out on your Mac.)

Walter

On Feb 1, 2014, at 10:46 AM, sly rubens wrote:

is there a way to rotate the carousel container itself?
the pane i know, but the container ? ( if this is the right description)
or lets expand this, is there a code or way to rotate html objects?
any ideas?
thanx in advance
Sly


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

no i mean literally rotate by 10-15% CCW .
5 panes appearing in 1 carousel! there must be a way to do this, i hope :slight_smile:

i put an example pic on:

http://www.gapart.at/example/example.jpg

regards
sly


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

You could give the illusion of this by having the Carousel content image be rotated and with careful background choice get what you want.

You could also try the Div Distorter action on each pane - not sure of the mileage of this one though or browser support.

Quick example http://www.deltadesign.co/FW6Test/carousel.html

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

You can, but only in modern browsers (Safari, Chrome, Firefox 26, IE 11).

-moz-transform:rotate(12deg);
-webkit-transform:rotate(12deg);
transform:rotate(12deg);

Wrap that in a selector that targets your outer carousel element – so if you have applied the Carousel 2 Action to an element with the Name/ID set to myCarousel, your complete style would look like this:

#myCarousel {
	-moz-transform:rotate(12deg);
	-webkit-transform:rotate(12deg);
	transform:rotate(12deg);
}

Wrap that in a tag and put it in the head of your page, and preview in a browser.

Walter

On Feb 1, 2014, at 11:47 AM, sly rubens wrote:

no i mean literally rotate by 10-15% CCW .
5 panes appearing in 1 carousel! there must be a way to do this, i hope :slight_smile:

i put an example pic on:

http://www.gapart.at/example/example.jpg

regards
sly


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

A little further reading has me add two more manufacturer-prefixed versions to this:

-moz-transform:rotate(12deg);
-webkit-transform:rotate(12deg);
-o-transform:rotate(12deg);
-ms-transform:rotate(12deg);
transform:rotate(12deg);

Always put the prefixed versions before the un-prefixed versions, so you don’t have to go back and fix anything when the browser makers finally support the real CSS3 standard (and drop the prefix from their parser, as in the next version of Chrome).

Walter

On Feb 1, 2014, at 11:59 AM, Walter Lee Davis wrote:

-moz-transform:rotate(12deg);
-webkit-transform:rotate(12deg);
transform:rotate(12deg);


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

thanx for your quick response, both of you.
i will try both ways tomorrow.
best
sly


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options