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
-1
votes
1 answer

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?
untore
  • 603
  • 8
  • 16
-1
votes
1 answer

Flips individual words in a sentence in C?

I am trying to flip each word in a sentence in C so that something like: "I like big dogs" would become: "dogs big like I" I have the following code so far: // the following effectively flips a sentence so "I like big dogs" would become "sgod…
user2019594
  • 353
  • 1
  • 3
  • 9
-1
votes
1 answer

Why can't i interact with the links on the backface?

1). "Link". I can't interact with the link/images on the backface of "follow us!" flip card on the bottom. (iv'e only used webkit). HELP :'( 2). Also when you move your cursor slowly towards the flip card, the card vibrates if your cursor's position…
So lost rn
  • 327
  • 3
  • 4
-1
votes
1 answer

Android horizontal scroll and horizontal flip

I have a webview, in which I load images. When I zoom in, I want users to scroll to view the rest of the contents. But when I scroll horizontally, horizontal flip is getting triggered. Is there anyway to stop this?
Green
  • 1
  • 2
-1
votes
1 answer

How to flip the edge of two connected triangles?

let's say I have two triangles with one shared edge. How can I flip the triangle order so that the two single points make up the new common edge? Thanks
-2
votes
1 answer

Js flip/unflip with same button

Hi I want to make a button that first flip the image and then on next click it will unflip it... I tried a lot of methods but didn't work for me.. $('.button').on("click", function (){ $('#image').css("transform","scaleX(-1)"); })
-2
votes
1 answer

"flip" values in numpy array?

I have a list of numbers within a range of 1 .. n I want to 'flip' some of the numbers, but it shouldnt repeat any of the existing numbers. I imagine it this way : pick numbers to flip flip them but check that they dont repeat Here is step 1 : …
sten
  • 7,028
  • 9
  • 41
  • 63
-2
votes
1 answer

Flip image when swiping in android

i need to create a image album.but i need to flip the image when we swipe for next . here is a link what exactly i want.can any one help me to get that code.i search for the code but i didn't get it.the above link shows the demo only .if the code is…
ABDUL SAMAD
  • 85
  • 1
  • 1
  • 7
-2
votes
3 answers

How in Visual Basics change characters in a string for example (1 to 0) and (0 to 1)?

How in Visual Basics change characters in a string for example (1 to 0) and (0 to 1) without the problem of changing them first to all to 0 and then all to 1, i want to get a result for example like that "00110010101101001010" to…
IRONALEKS
  • 50
  • 10
-2
votes
1 answer

Jquery , flip rotate image

I'm looking for a way to rotate and flip image at the same time .i used this : to flip: $('.images').css({ '-webkit-transform' : 'scaleX(-1)', '-o-transform' : 'scaleX(-1)', '-webkit-transform' : 'scaleX(-1)', 'transform' :…
user3868840
  • 371
  • 1
  • 3
  • 4
-2
votes
2 answers

How to flip and save Image

My Image declaration: ImageIcon imageIcon1 = new ImageIcon(main.class.getResource("image1.png")); Image image1 = imageIcon1.getImage(); How do I take image1, flip it along it's vertical axis and save it as another image? I have googled and every…
-3
votes
1 answer

Improving of JS function for different ID (flip cadrs)

I'am trying to build up the site, and I had a problem with JS function. So the question is, do you have any thoughts about improving this JS fragment for work with different ID's (means If I click on button the exactly card will flip (the site will…
-3
votes
1 answer

How to flip text horizontally with JavaScript?

I need to use JavaScript to flip all texts horizontally in body of website. I'm not looking for CSS, I want to use only JavaScript. All Texts inside body will flip horizontally CSS Code is: .flip { -moz-transform:…
-5
votes
1 answer

JS-Counter: Set up different speeds (Interval) in one function

I have this following Code: var count=0; var counter=setInterval(timer, 50); //1000 will run it every 1 second function timer() { count=count+1; if (count >= 24) { clearInterval(counter); //counter ended, do something…
1 2 3
48
49