a CSS function to move the element in 3D space used with the transform CSS property

learn more… | top users | synonyms

1
vote
1answer
110 views

3D transforms (translate3D) appear to be causing sluggish jQuery animations on mobile devices

I am using a CSS translate 3D and scale 3D for a responsive navigation menu. On touch devices, more specifically, iPhone, it is causing separate jQuery animations on the same page to perform ...
0
votes
0answers
37 views

Translate3D % values do not resize with window

So I have a fullscreen web app that uses a little bit of javascript to resize containers when the viewport size is changed. I have multiple containers that translate from outside the container (100%) ...
0
votes
1answer
157 views

CSS3 Transform Translate3D IE10

according to IE 10's supported technologies what I am trying to accomplish should be working, but I cannot figure out what is going on. in firefox and chrome it works just like it should, but in IE10 ...
0
votes
1answer
44 views

Why is my zoom wrong in this d3 code?

This code is running live here: http://domtree.breckyunits.com The part that is a little off is the zoom behavior. When I zoom in on a point, it zooms correctly but translates to the wrong point. I ...
0
votes
0answers
77 views

Using CSS transforms on bxSlider items break animation in Safari

I came across this issue when upgrading to the latest version of bxSlider (v4.1). The new version is responsive and therefore uses transform to go between slides, rather than the old way of using the ...
0
votes
2answers
90 views

How do I get the absolute value of translate3d?

How would I go about converting a negative translate3d value into a positive number? For example: var val = $m('slider').style.webkitTransform; console.log(val); // this returns a number like: ...
1
vote
0answers
244 views

CSS transform translate3d image animation strange anti-aliasing behavior causes jitter

I have a jsFiddle example of an image animating from left to right using CSS3 translate3d, here: http://jsfiddle.net/Rhx2K/3/ I have a requestAnimationFrame looping 60fps and setting the left ...
1
vote
1answer
170 views

Unable to stop CSS3 transition of transform by translate3d

I'm trying to animate an element by CSS3 transtions using translate3d: JSFiddle. // for start animation $("#content") .css("-webkit-transition", "all 100s"); .css("-webkit-transform", ...
0
votes
1answer
109 views

Firefox Mobile: element animated with translate3d flows out from parent container

I have an element which I animte with translate3d transform. The parent element has overflow: hidden, but on Firefox Mobile 19.0.2 during animation the animated element is visible outside of the ...
0
votes
2answers
100 views

How to translate in Z WebGL?

My problem is that the function translateZ stops the code and doesn't work. Without this line: particals.translateZ(50); the code works but I want to translate the particals in the Z axis by 50 this ...
0
votes
0answers
124 views

CSS3 Webkit 3d transformation text rendering

I try to scale and animate a huge website with CSS transformation translate3d, scale and rotate. I am aware that webkit converts the elements to an image. But I need a way to render fonts sharp and ...
1
vote
2answers
310 views

Can't make translate3d Z property to work

I am traying to use: -webkit-transform: translate3d(0,500px,300px); X and Y properties working just fine, but Z (300px),just won't work. Here is the jfiddle. What am I doing wrong? I tried both ...
0
votes
0answers
41 views

Chrome large scaled object in 3d object disappears

I don't know if this is a bug or if it just needs to be called a rendering issue, but it's annoying. If you have a 3d translated object, within that you have a scaled object, if that scaled object ...
1
vote
1answer
220 views

Chrome 24 css3 transform 3D flickering on hover

I'm having a weird bug on chrome 24. Better than a long description you can take a look here .card { width:270px; height:180px; background:lightblue; border:1px solid black; } .card:hover { ...
0
votes
1answer
81 views

Transition not occurring first time

I have the following css: .some-el { width: 60%; height: 50%; position: fixed; left: 20%; right: 20%; top: 0%; background-color: black; /* All vendor-prefixes */ transition: ...
0
votes
0answers
101 views

Lost Position after use translate3d

<div class="wrapper"> <h1 style="position:fixed" class="header">header</h1> <div class="content"></div> </div> After I use transition of trasit lib here ...
4
votes
1answer
124 views

Firefox bug with translate3d on a flash element

There is a bug in FireFox in which any flash element who's parent (or ancestor) element is translated will be not be rendered. If the translation is removed it immediately appears. Here's an example: ...
0
votes
1answer
146 views

'translate3d' strange rendering on chome /makes fonts look different

I'm having a leaflet map which uses -webkit-transform: translate3d. <div id="map"></div> <div id="foo">some text</div> Let's say we have the above code and foo is located ...
0
votes
2answers
320 views

css transform3d and stacking order

I use isotope to layout some items. Each item includes a popup menu. Because isotope uses translate3d in order to layout and animate the items the stacking order of the menus us all messed up. A later ...
0
votes
1answer
1k views

CSS3 animation translate3d not working

I have been experimenting with jQuery animate vs CSS3 animate, I alse wanted to test the 2D / 3D translate to see which is better. Does anyone know why my CSS3 translate3d doesn't work? I've tried it ...
0
votes
0answers
58 views

how to calculate the sizes/position of a transformed elements into the Z direction

I have this issue that I need to know, before doing any transformation on an element, what the effect is on size (and position) before applying the actual transformations. I've studied the matrix ...
1
vote
0answers
194 views

translate3d(0,0,200px) -> what will be the width?

consider the following example: http://jsfiddle.net/jeanluca/s4Ppf/ The initial width of #child is 100px. Now, after translating it 200px into the z-direction is it possible to compute what the width ...
0
votes
0answers
88 views

How use css translate3d to moving an object?

Is anyone knows how to use css3 to move an object from one point to the other point? Or any sample tutorial can achieve the animation like this: ...
1
vote
1answer
392 views

translate3d() causes clipping in Safari

I have a web app that I am developing that relies heavily on absolute positioning, CSS transforms, and CSS transitions. My markup: <div class="wrapper"> <div class="background" ...
0
votes
0answers
126 views

CSS Absolute Positioning in 3d Space

I'm working on a project where the user scrolling causes a bunch of absolutely positioned boxes to change their transform: translateZ() property. This works fine. What I want to do is create new ...
4
votes
1answer
192 views

Make 3d-translated element clickable

I have two divs inside a wrapper-div. The first one is positioned in front of the wrapper via translate3d(50px, 50px, 50px), the second is positioned behind the wrapper via translate3d(50px, 50px, ...
2
votes
1answer
200 views

Zynga Scroller - Set a starting offset for a scrollable area

Anyone familiar with the Zynga Scroller JS library? How do I set a default offset for a scrollable region? I set the CSS for the element using: -webkit-transform' : 'translate3d(200px, 0px, 0) ...
4
votes
1answer
325 views

-webkit-transform:translate blocky render on iPad

So I understand that translate/translate3d utilizes the GPU, but for some reason it is causing large graphics to render in blocks/chunks on the iPad. I'm having difficulty finding anywhere that states ...
0
votes
1answer
345 views

How to detect CSS translate3d without the webkit context?

To detect if a browser support translate3d we can use (WebKitCSSMatrix in window && m11 in new WebKitCSSMatrix()) but now that firefox support translate3d how to have a correct detection of ...
6
votes
1answer
1k views

Translate X and Y percentage values based on elements height and width?

Translating an elements Y axis 50% will move it down 50% of its own height, not 50% of the parents height as I would expect. How do I tell a translating element to base it's translation percentage on ...
0
votes
0answers
1k views

Weird display isssues with flexslider slides in safari

I'm using woothemes flexslider on this website: LINK REMOVED (had to remove the link) The sliders are working fine in all browsers. Only Safari seems to have some issues with them. Actually Safari ...
2
votes
1answer
247 views

-webkit translate3d stutters with large elements

I'm animating elements using -webkit-transform: translate3d(x,y,z) and the cubic beizer timing function combined with touch-events for the iPhone to make a custom scrollmethod type thing. Trouble ...
1
vote
1answer
210 views

CSS3 translate3d repeats continuously upon removal of animation on Android 4.0.1

I want a spinning animation applied to a div, which repeats continuosly until I want it to stop. I added class ‘spinning’, which contains the animation parameters to my div, then removed the class ...
2
votes
2answers
166 views

What is the formula for proportions of elements using perspective and translateZ?

I would like to do the following: Given a container with perspective and an inner element with a translateZ value I'd like to "pull it up" with translateY in order to visually touch the top of the ...
0
votes
1answer
380 views

Chrome 18 3d translate performance

Just updated Chrome to 18.0.1025.142 from 17 on a Mac running 10.7.1 and it's killed the performance of our site. We've been using translate3d where available to move a large number of items around ...
2
votes
1answer
658 views

does translate3d perform better with css3 animations?

I have been searching and spending lot's of hours on the web to get smooth animations. Is it correct that when you set a element properties like below using the translate3d propertie that it will ...
0
votes
1answer
281 views

How can I stop mobile Safari from pausing before beginning a transition

this is an odd one! Overview: I'm creating a web app and I've created a menu similar to the one you'd find in the Facebook app. Swipe right and it reveals, left and it hides. I'm doing this by ...
0
votes
1answer
377 views

about CSS3 translate3d flicker ,checked lots answer,but seems unlucky

First of all,I am doing a html5 webapp on iOS, especially iPad.when touchmove,the div should move with my finger together,I used to change the left value to make this effect,but it seems not smooth ...
0
votes
1answer
1k views

CSS3 transform: translate3d doesn't affect the z-axis?

I have this snippet implemented: CSS div { position:absolute; -webkit-transition: all 0.3s ease-out; } .block { background:#fc0; /* YELLOW */ top:50px; left:50px; width:80px; ...
1
vote
0answers
369 views

Safari translate3d bug with youtube embed videos

I am trying to make my homepage work with safari iphone/ipad. The thing is, i want to move youtube videos embedded inside <div> tags around the page. Normally I do this by using jquery and I ...
7
votes
1answer
1k views

iPad 2 Safari shows pixellated html text and images

We are developing an HTML5 + CSS3 application for iPad and iPhone. The app is working fine on iPad & all iPhones, however, iPad 2 shows html dom objects pixellated on startup, and stays like that, ...
2
votes
1answer
531 views

Android Webkit Input elements buggy with CSS3 translate3D

I'm having a couple issues with the Input element in a Webkit Android App i'm developing. Testing on 2.X, but 3.x doesn't seem to have these issues... The app works by having separate Div's for each ...
1
vote
0answers
297 views

Safari bug: translate3d scrolling is offset when input causes scrolling

There is a bug in Safari 5.1.1 on Mac which seems intractable. (Also, exhibited by Firefox on Mac.) Using iScroll to set up a scrolling DIV, any scrolling caused by an INPUT or TEXTAREA offsets the ...
7
votes
6answers
6k views

WebKit: Blurry text with css scale + translate3d

I'm seeing an issue where Chrome and other WebKit browsers massively blur any css-scaled content that also has translate3d applied. Here's a JS Fiddle: http://jsfiddle.net/5f6Wg/. (View in Chrome.) ...
1
vote
0answers
439 views

How to make translate3d element respect z-index in Mobile Safari?

I found a wired issue in Mobile Safari as demo http://mocheng.github.com/demo/translate3d.html There is one page translate3d_iframe.html inside translate.html as iframe. Elements in ...
7
votes
1answer
997 views

translate3d vs css left/top and hardware acceleration

As I understand hardware acceleration on iOS devices is enabled when using translate3d(). So why this test on jsperf shows that using css left/top is faster?
1
vote
0answers
442 views

Chrome + webkit translate3d, mangles images

This is a bit weird. When I apply -webkit-transform: translate3d(0px, 0px, 0px); to images on a site I am building, they look fine initially. But when I start scrolling or resize the browser window to ...
2
votes
2answers
716 views

CSS 3D transformed html element with negative z-value doesn't fire events

In the following scenario, we see two divs with applied CSS3 3D transformations within a container. Both should fire a event when they are clicked. In this case an alert is shown, indicating which div ...
4
votes
2answers
3k views

webkit translate3d issues (peek-thru)

I'm building an iOS app with PhoneGap. I'm using translate3d CSS animations to create the 'flip' effect. This works great on simpler elements...a DIV with front/back divs and maybe an extra span or ...