0
votes
2answers
30 views

Text rotation 270 degrees not works in IE8

I am creating a slide menu with one label text rotated by 270 degrees. Works well in all modern browsers including Explorers 10+9. But I'd like to make it functional also in older IE8 & IE7, so ...
0
votes
1answer
22 views

CSS Sideways text sticked on the page's corners

I'm having some trouble with css rotations and positioning. I'd like to make a webpage's title sideways (rotate -90°, so it reads from left to right -> bottom to top) and sticked to the bottom right ...
0
votes
2answers
37 views

jquery/CSS rotate hides half of the image?

I want to be able to rotate an image in 4 steps if the user want it, but i'm having problems since the rotation i use centers the image and then hides half of the image when i just want the image to ...
1
vote
2answers
44 views

Positioning rotated div elements

I am having some difficulty positioning a rotated div element. So far I have: #side-banner { transform: rotate(270deg); } which rotates my div just fine. however, I am having trouble "Pinning" it ...
0
votes
2answers
94 views

JQuery- Rotating a div clockwise and anticlockwise

I found this link on how to rotate a div using JQuery. Rotating a Div Element in jQuery and some more articles too. The code is as follows $(function() { var $elie = $("#wheel"); ...
2
votes
1answer
57 views

internet explorer not anti aliasing rotated image

I have a div with a background image that I am rotating. Below is my css rules to rotate it: #services_parallax { -webkit-transform:rotate(3.1deg); /* Webkit */ transform: rotate(3.1deg); /* firefox ...
0
votes
0answers
28 views

How to stop transform-rotation from distorting font?

I'm using transform-rotation css property to rotate a a div so i can use it as a fixed facebook and twitter links on my page, altho, when i use it it "distorts" my current text font. When i take the ...
-1
votes
0answers
44 views

-webkit-transform: rotate not functioning

Having problems using -webkit-transform: rotateX(180deg). Unfortunately, I cannot get it to load or work. Here's the code in question. HTML: <!DOCTYPE HTML> <html> <head> <link ...
2
votes
2answers
71 views

Why isn't this element rotation working?

I'm trying to rotate text in IE8. According to this answer, it should be possible to rotate an element as tried in the following example: <!DOCTYPE html> <html> <head> ...
1
vote
2answers
59 views

Toggle rotation of a div using jQuery

So I am trying to create an effect where when a user scrolls to the bottom of a page, a div rotates so that it is pointing back up. However, I would like it to rotate back to it's original position ...
0
votes
1answer
80 views

Position rotated div

I'm trying to rotate and resize elements ('furniture' in my roomplanner). Every element (image) has a div wrapped. This div is draggable, the image can be rotated. There is a second div wrapped around ...
1
vote
0answers
34 views

Rotation error in overflow div IE 8

I have a div with contains an image that have to rotate whenever the user click the zoom bottom. Once the user click the link, a div that holds the image display in with 100 z-index(to the top). The ...
1
vote
4answers
278 views

Make div rotatable in every browser

First i have seen Rotating a Div Element in jQuery but it didnt give me the solution i wished. I have a div with draggable divs in it. so 1 main div (bord) with divs in it(class sleep) in the divs ...
0
votes
1answer
150 views

jQuery rotate cube when the button is clicked

Why doesn't button make cube rotate? I am adding +=45deg to it! Here's the code: jQuery: $(document).ready(function(){ $('button').click(function(){ ...
1
vote
1answer
69 views

Fix crispy/jagged rendering of text after CSS3 rotation

I'm sure that you're noticed annoying look of text after CSS3 rotation. Text looks so crispy, jagged, unaligned... I've found some answers which include -webkit-font-smoothing but that doesn't have ...
1
vote
1answer
28 views

how come bottom padding animation on rotated object causes -DIAGONAL- movement?

I'm trying to do a little feedback tab on the elft side of my page. I've created a div, rotated it 90 degrees, and slapped it to the left side of my page. So far so good. Then I wanted to add a little ...
1
vote
1answer
152 views

Repeat an image in tile, and make it rotate

How do I fill a website with a repeated image in tiles, just like background-repeat: repeat; and make it rotate using either CSS or Javascript? To rotate a single image I can use CSS: ...
1
vote
4answers
100 views

CSS3 transform - rotate and font goes away

I'm using this simple css3 transformation rule on an html element (wich contains many other elements like h1,h2,inputs,and img): div{ -moz-transform: scale(1) rotate(-3deg) translateX(0px) ...
-1
votes
1answer
64 views

need help for a simple javascript function

This is my 1st post here after I've looked for a solution for my needs with no result I'm not good at javascript and jquery and I know that my answer is there :) Here is the code ...
0
votes
1answer
105 views

transform - rotate and scale is not working when i convert html content to pdf

I am using html2pdf to convert html content with images to pdf and i have also added an option to rotate and flip the images... Right now pdf is created successfully ... but if i have rotated or ...
-1
votes
1answer
64 views

How can I forbid text flipping with css or jquery?

When an object is rotated +180° everything inside it gets flipped so that it is still readable (I guess), I want to avoid that , how to do it?
0
votes
2answers
50 views

Line Rotation in IE

How can I make this line rotation work in IE8? I used this to get the ms-filter but still wont work.. Here's a JSFIDDLE. Heres the HTML: <div class="mainmenu"> test </div> and the ...
0
votes
1answer
108 views

Trying to create a jQuery image rotator but can only get the first half of it to work

I'm trying to create an image rotator where one image will fade into the next and so on until it loops back to the first image. I got the first two images to work correctly but the remaining 3 don't ...
-1
votes
1answer
81 views

rotate a div using jquery and css2

i have a div i want to rotate it on mouseenter event, I want the rotation to be animated not one move - like :hover - , with jQuery of course any ideas to make it??
0
votes
0answers
72 views

jQuery transform rotateY on mousemove

There is a website that best describe what I am trying to do! http://jjr2012.srf.ch/ Actually I have two questions: Is there any jQuery that can generate that kind of word clouds (specific shapes)? ...
2
votes
4answers
494 views

Css rotation not applied in android (phonegap)

I'm building an app for android in phonegap and I have an issue with rotating divs with css. I have found a similar question here: CSS rotation not applied in Android 4.0 webview I have 2 android ...
1
vote
1answer
169 views

How can I have an animation follow my cursor

So currently, if you hover over the compass the needle spins around, however, when you take your mouse off it just resets. Is there a way that I can either: Make the needle follow wherever my mouse ...
5
votes
2answers
817 views

CSS rotation cross browser with jquery.animate()

I'm working on creating a cross-browser compatible rotation (ie9+) and I have the following code in a jsfiddle $(document).ready(function () { DoRotate(30); AnimateRotate(30); }); function ...
0
votes
2answers
45 views

CSS3 rotation in IE9

I have a jsfiddle that should work in IE9 but that doesn't The CSS: #MyDiv{ width:150px; height:150px; margin:100px 100px; background-color: red; transition:all 2s ease; ...
2
votes
2answers
479 views

Rotating a background image with CSS3

I have a background image that has an arrow that points to the right. When a user clicks on the button, the selected state changes the arrow to point down (using a different background position in my ...
0
votes
2answers
321 views

Bootstrap responsive css and/or viewport issue/bug on rotation of a device

I've currently got a problem in my website http://www.peterfox.me, when ever viewing it with a mobile device, (iPhone, Nexus 4) rotating the screen seems to screw up the size of the body/html, is this ...
1
vote
2answers
95 views

How to use CSS Rotate() in TH Table Tags

I need some CSS guru assistance. I am trying to create a simple html <table> where the column headers (<th> tags) have their text rotated 270 degrees to display sideways. I am having ...
-1
votes
1answer
134 views

css/js to wobble (rotate) image VS photoshop animation

I'm planning to use photoshop to make an animated image - a 3D object that spins like a top. A webpage I'm making will show several identical images which spin exactly the same way. Also, they all ...
1
vote
1answer
55 views

Constraining <p> to the bounds of an angled <div> w/ CSS (JSFiddle link attached)

I would like the <p> in my document to be contained within an angled <section> container so as to create stepped lines for the paragraph. Ideally I'd like the paragraph take the shape of ...
1
vote
2answers
70 views

Rotate from -9 to 9 degress automatically

I currently have this code -webkit-transition: 0.9s; -webkit-transform: rotate(-9deg); -moz-transition: 0.9s; -moz-transform: rotate(-9deg); -o-transition: 0.9s; -o-transform: rotate(-9deg); ...
0
votes
1answer
85 views

CSS Filter Rotate bugg in ie7

So here's my problem: I'm displaying an Iframe over an overlay-div. In this iframe a layout of circles with arrows drawn in between them is displayed (See image: http://i49.tinypic.com/oprb00.png). ...
0
votes
1answer
186 views

Unable to CSS rotate iframe containing embedded Youtube video in IE

I want to show rotated embedded videos on my site. Im using iframes for displaying the videos. Rotating via css transform works well in all the browsers I've tested: iframe{ -moz-transform: ...
0
votes
1answer
106 views

Rotate div-element inside another

I prepared a Fiddle for you to show what my problem is: I need to turn some text placed inside of a div-tag so that it appears vertically. No problem so far. http://jsfiddle.net/pSDLY/ HTML: ...
0
votes
1answer
94 views

css3 rotation doesn't work in IE9

This code allows me to slowly rotate images whenever the mouse is over one of them. .foo img { -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all ...
5
votes
1answer
256 views

Text rotate background issue - IE8 and IE7

I have a carousel that requires titles be rotated by 270 degrees, and it looks lovely but on IE8 & IE7, there is a horrible black outline in the text. From Firefox- IE9, Chrome and opera are all ...
1
vote
1answer
61 views

CSS3 Rotate from the left?

I'm trying to make kind of a "fold-in" effect for a submenu, but i'm having some issues. See this codepen: http://codepen.io/anon/pen/Lotav As you can see, by default the submenu has a rotation of ...
0
votes
1answer
101 views

3D CSS transform not rotating about the correct axis

I'm attempting to build a four page website on the faces of a cube. I've gotten pretty close to what I was after here, but the 3D rotations sometimes don't behave as expected. When a nav element is ...
0
votes
0answers
50 views

IE9 CSS inline rotate issue

I'm attempting to add in a css -ms-transform:rotate(-90deg); inline on an element using jquery. Firefox and Chrome have no issues with this but IE9 seems to be rotating the element at a different ...
0
votes
1answer
78 views

jQuery Rotate lags after a few uses

I've created a compass like feature on my site but it points to menu items. I'm using the jQuery rotate plugin. However, when I first load the site the compass works flawlessly, but after a few ...
2
votes
3answers
147 views

Rotate 3 div simultaneously using css

I want to rotate 3 div simultaneously. <img src="logo.png" class="logo" width="150px" height="150px"/> <img src="1.png" class="logo" width="150px" height="150px"/> <img src="2.png" ...
0
votes
0answers
73 views

make the map/area element rotate with native javascript and css

We have this htmls in our page: <div id="img"></div> <div id="mouse_target"> <img style="-moz-user-select: none; border: medium none; width: 27px; height: 35px;" ...
0
votes
1answer
206 views

rotate image with css

I would like to rotate an image by 90 degrees with CSS only. I can do the rotation, but then the position of the image is not what it should be. First, it will overlay some other elements in the same ...
0
votes
1answer
326 views

Rotating Navigation Hyperlinks in a ul

I am building a Wordpress theme (based on the bones theme) where the design requires the menu (a ul) to be rotated 90 degrees clockwise, so the menu runs (fixed) along the right of the screen, with ...
0
votes
2answers
239 views

jquery rotate function not working

Hi guys at the moment i am trying to figure out how to rotate a div and make it stop at a loctation. I have had some help on this however iam not sure what iam doing wrong. Any help with the code ...
2
votes
4answers
791 views

On hover image rotate 45 degrees

I'm trying to rotate an image 45 degree (well actually I really want to make it wiggle back and forth) when I hover over. I tried using CSS with the transform rotate with no luck. Does anyone have ...

1 2 3 4