Questions tagged [transition]
DO NOT USE! THIS TAG IS AMBIGUOUS. Try to use a less ambiguous tag like [css-transitions], [android-animation] or [ios-animations] [pytransitions] if possible.
5,136
questions
-3
votes
1
answer
18
views
Css Transition does not work when is .myclass:not(.example) by clicking the button
I'd like to understand why some parameters work with transiton and some don't. I have a button that brings up a div. If I only use max-height as a parameter then the transition works fine. When I ...
1
vote
1
answer
30
views
Transition effect between two states of svg polygon on hover
function menuHover(navLI, Y) {
const topTriangle = navLI.querySelector(".triangle").querySelector("polygon");
topTriangle.setAttribute("points", "0,0 200,0 100," + Y);
}
function navHoverIn(...
0
votes
0
answers
14
views
BARBA.js transition gets broken after adding woocommerce links to menu
Today I bump on a weird issue, that seems to happen with WooCommerce plugin (well im stuck on it for 4 days T_T)
THE PROBLEM:
Barba Transition animation gets broken at afteafterLeave( ) hook after i ...
0
votes
0
answers
36
views
CSS Transform/Transition not working on Safari
The following CSS works to animate a couple of listed items I have on this page:
https://startup.buscoajack.com/homepage-aurelie/
selector {
display: flex;
}
#primary li a {
-webkit-...
0
votes
0
answers
3
views
What would be the url to set in Postman to fetch data from TargetProcess API to get state transition data and date of transition?
We use Targetprocess to maintain the tickets. There are multiple states in which a ticket can be set to: Open, Analyzing, In Dev, Review, Done, etc. Also, we can create reports of all the state ...
1
vote
1
answer
70
views
How to add transitions between clips in moviepy?
My current attempt:
This is my current code:
from moviepy.editor import *
clips = [VideoFileClip('a.mp4'), VideoFileClip('b.mp4'), VideoFileClip('c.mp4')]
transitioned_clips = [demo_clip.crossfadein(...
1
vote
1
answer
30
views
How to present a modal view controller like with UIKit's UIViewControllerTransitioningDelegate?
I am switching from UIKit to SwiftUI and still struggle to understand some parts of it, especially the transitions between views.
I have a situation where is displayed on screen a view controller with ...
0
votes
1
answer
25
views
SwiftUI: how to make a view disappear with a slide to the top?
I would like to make a view disappear with a transition to the top, but I have no idea how to do this with SwiftUI. Here is my code so far:
struct MyList: View {
@State private var loading = true
...
1
vote
1
answer
47
views
SwiftUI: How to create a custom SwiftUI Transition depending on a State Object?
Context: I have encountered a problem while working with SwiftUI Transitions. I have a FormView containing 4 different Sub-Forms. When the User presses the Next-Button, the next Sub-Form View is ...
0
votes
0
answers
4
views
problem with vue3 animation when using dynamic component
I want to add animation for two components ,
this is my code :
let activeComponent = ref('Login')
</script>
<template>
<Transition name="fade" mode="out-in">
...
0
votes
0
answers
20
views
How to apply different animations to an old page during the transition?
I have a panel as a tabbar at the bottom with custom animation and with page names. I have 5 pages that can be switched with the next animation: the new page should slowly increase visibility (...
3
votes
2
answers
38
views
How to fill out all possible columns in a dataframe with r data.table?
Suppose we start with the below data dataframe, generated by the code immediately beneath:
> data
ID Period_1 Period_2 Values State
1 1 1 2020-01 5 X0
2 1 2 2020-02 ...
-1
votes
0
answers
33
views
How can I make an image wipe-fade effect using HTML, CSS, and Javascript?
I'm currently teaching myself HTML, CSS, and Javascript, and am trying to add in elements as I learn things or think of ideas I want to try. I began initially with getting an automatic slideshow done ...
0
votes
0
answers
14
views
ffmpeg-python crossfade transition for unknown number of videos
How to pass a list of file names (videos) to ffmpeg and have it concat and crossfade between each in the simplest way?
Thanks
0
votes
0
answers
16
views
how to add fading and transitions when adding the innerText of a div in javascript
just like in the "phone" app of an android phone I want that each input should have a transition and some fading effects. This is because am trying to duplicate that kind of app using JS
try ...