Questions tagged [flip]

a UI effect. for other flip types, see [flipboard] [swap] [bit-twiddling]

Describes the action of making elements in an application more aesthetically pleasing by producing a 'flip' effect.

What questions should not have this tag?

Please do not use for flipboards [flipboard], reversing arrays [swap], bit flipping [bit-twiddling]

734 questions
6
votes
1 answer

iPhone card like flipping animation

I'm trying to create a card flipping animation on iOS, and I'm failing miserably. Basically I have a global View with a Controller. Inside I have a holderView, which contains the card. I have the front of the card, which is the mainView, and then…
Andrei
  • 1,183
  • 2
  • 19
  • 40
6
votes
2 answers

Flipping a bitmap in android help?

I want to save up memory for my game and I wanted to ask you because I couldn't find anything and last time that I asked something here I got a good answer. Can i flip the bitmap inside eclipse so i could save on memory for sprites? All the…
Baruch
  • 1,618
  • 5
  • 23
  • 42
6
votes
2 answers

CSS flip card: How can I activate the flip via tab, so it is keyboard accessible?

I have found some great tuts on how to make a flip card with CSS. My question though is how to make this keyboard accessible. In other words, for a user with a disability who only is using a keyboard, hopefully they would be able to just use the tab…
Mark
  • 2,961
  • 1
  • 16
  • 24
6
votes
2 answers

CSS flip code won't work in IE11

I am trying to create a flip animation for some images, which when they turn over, display appropriate link text. This works perfectly in all browsers that I have tested, but IE11. I read that there is a problem with transform-style: preserve-3d;…
kunoichi
  • 61
  • 1
  • 1
  • 3
6
votes
4 answers

Flip normals in three.js on sphere

I have been searching around and haven't found any really good answer to my question yet.. The thing is that I have this sphere.. just a basic sphere, and I want to flip the normals so the sphere gets the sort of "hollow/carved effect" and then…
Inx
  • 2,364
  • 7
  • 38
  • 55
6
votes
1 answer

Flip, mirror image in IE8 - CSS

As above how can i flip image in IE8. -moz-transform: scaleX(-1); -o-transform: scaleX(-1); -webkit-transform: scaleX(-1); transform: scaleX(-1); filter: FlipH; -ms-filter: "FlipH"; This works fine but not in IE8
user2537093
  • 139
  • 2
  • 9
6
votes
1 answer

CSS rotation slow

http://jsfiddle.net/egEq2/ .badge { -webkit-transform-style: preserve-3d; -webkit-perspective: 1000; position: relative; } .back, .front { position: absolute; -webkit-backface-visibility: hidden; -webkit-transition:…
eozzy
  • 66,048
  • 104
  • 272
  • 428
6
votes
3 answers

jquery how to do a flip effect?

i am trying to mimic an effect found usually on mobile devices where you have a panel and when u click a button it spins around and on the other side it has some other info. i found some code that usses css transitions and here is an example the…
Patrioticcow
  • 26,422
  • 75
  • 217
  • 337
5
votes
2 answers

How to create a card flip effect on DIV using javascript

I want to create a card flip effect (same as webkit transitions and 3d transforms) on DIV using simple javascript and CSS and NO libraries or plugins. How can I achieve this? As most of the CSS3 properties work for webkit browsers. And most of the…
manishekhawat
  • 699
  • 3
  • 12
  • 18
5
votes
1 answer

Android: How do you emulate a keyboard flip?

While debugging my app using Monkey (which is almost as fun as the real thing), I managed to crash! Yay, that's what it's for, right? Looking at the log (and while watching) I noticed that Monkey is occasionally doing: :Sending Flip…
SMBiggs
  • 11,034
  • 6
  • 68
  • 83
5
votes
3 answers

3d transform with pure CSS

I am trying to rebuild this with pure css. And I've got this far. But the idea as you can see from the flash version, is that as the cover appears the other divs make space for the one that is on hover. I have tried to set the width on auto and…
dandoen
  • 1,647
  • 5
  • 26
  • 44
5
votes
2 answers

Flip image vertically (Swift)

How to flip an UIImage vertically (up/down)? This is a question that is asked before... Flip UIImage Along Either Axis How to flip UIImage horizontally? How to flip UIImage horizontally with Swift? I am showing an image in a image view and it is…
Leontien
  • 612
  • 5
  • 22
5
votes
2 answers

How to implement a flip effect using Anuglar 2 animations?

I have been using pure css flip of cards in my project but this solution is not proper one. Can somebody present a flip in angular 2 on click of a button? I have found one in angularjs https://codepen.io/Zbeyer/pen/oXQrZg
Tomasz Cysewski
  • 569
  • 3
  • 10
  • 15
5
votes
1 answer

How do you sequentially flip each dimension in a NumPy array?

I have encountered the following function in MATLAB that sequentially flips all of the dimensions in a matrix: function X=flipall(X) for i=1:ndims(X) X = flipdim(X,i); end end Where X has dimensions (M,N,P) = (24,24,100). How can I…
Wajih
  • 793
  • 3
  • 14
  • 31
5
votes
2 answers

PresentModalViewController or addsubview?

Hi I am writing an app in xcode 3.2.3. All I want to do is switch to another view but I am unsure of the best way to do this. I can do it either of these 2 ways... PreferencesViewController *screen = [[PreferencesViewController…
user157733
  • 569
  • 2
  • 12
  • 26