The Wayback Machine - https://web.archive.org/web/20200713193141/https://github.com/topics/animation
Skip to content
#

animation

Here are 5,773 public repositories matching this topic...

wnesensohn
wnesensohn commented May 23, 2016

Selection Sort, for example, makes the algorithm look extremely (impossibly) good at first glance - O(n) - because it's not showing the majority of the steps.

Instead of

    for (var j = i + 1; j < D.length; j++) {
        if (D[j] < D[minJ]) {
            tracer._select(j);
            minJ = j;
            tracer._deselect(j);
        }
    }

it has to be more like

    for (var j
bdaneshgar
bdaneshgar commented Apr 28, 2020

What did you do?

Using the City Guide example

What did you expect to happen?

If I select a cell (say Toronto) I expect Toronto to be the cell that performs the 'present modally' segue animation

What happened instead?

instead another random cell expands

General Information

  • iOS Version(s): 13

  • Swift Version: 5

  • Devices/Simulators: iphone x

  • Reproducibl

tapz
tapz commented May 4, 2020

The cancel/accept toolbar is inactive, but the buttons can be pressed.

Expected behaviour
Toolbar and cancel/accept buttons not darkened

Actual behaviour
Toolbar darkened

Bug

What is the current behavior?

Toolbar darkened

What is the expected behavior?

Toolbar and cancel/accept buttons not darkened

Android
Samsung Galaxy S8+, Android 9

![screencap](https://use

aseprite
anoop4real
anoop4real commented Mar 13, 2020

This is not an issue but an observation. I no longer use storyboards for my view. Today I faced an issue with Skeletonview when I added it to my UITableViewCell, animations, frames everything was working wrong... did a lot of permutation combinations turning the properties on and off. Finally found that when you add elements in UITableViewCell you should add it to contentView and not to th

manish-jain-1
manish-jain-1 commented Oct 18, 2019

Cross-post:
https://stackoverflow.com/questions/58458388/error-testing-animated-react-native-component

Environment: Mac/VSCode with below npm packages:

 "react": "16.6.3",
 "react-native": "0.57.8",
 "jest": "23.6.0",
 "babel-jest": "23.6.0",
 "react-native-animatable": "1.3.1",
 "react-test-renderer": "16.8.6",

Tried below in jest config:

"transformIgnorePatterns": [

Improve this page

Add a description, image, and links to the animation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the animation topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.