B4A Code Snippet Animation easing functions - TILogistic (first post)    Mar 09, 2024   (4 reactions) A few years ago I researched how to make animations in my applications.
Here are some other tutorials that will be of interest to some.
tutorial:
https://spicyyoghurt.com/tools/easing-functions
online tool
https://matthewlein.com/tools/ceaser
https://cubic-bezier.com/#.17,.67,.83,.67
https://easin B4A Example [B4X] Like Animation - smooth and beautiful transition - Alexander Stolte    Nov 25, 2020   (26 reactions) txt_size)
Else
xlbl.SetTextSizeAnimated(duration/2,1)
Sleep(duration/2)
xlbl.Text = Chr(0xE87E)
xlbl.TextColor = unliked_color
xlbl.SetTextSizeAnimated(duration/2,txt_size)
End If
End Sub B4A Code Snippet [B4X] [XUI] Simple Halo Animation - Erel    Oct 17, 2017   (45 reactions) SetBitmap(bmp)
Parent.AddView(p, x, y, 0, 0)
Dim duration As Int = 3000
p.SetLayoutAnimated(duration, x - radius, y - radius, 2 * radius, 2 * radius)
p.SetVisibleAnimated(duration, False)
Sleep(duration)
p.RemoveViewFromParent
End Sub
Usage example:
Sub Activity_Touch (Action As B4A Tutorial B4X Ui/Ux ???? - ramezaniabbas (first post)    Oct 24, 2020   (5 reactions) new Post ( 12-uiux Login Animated ) Please refer to post number 1 This tutorial will teach you how to work with animations in b4x Send us an email to receive the source code : [email protected] B4J Code Snippet [B4X] Fitting a smooth curved line to a sequence of points - William Lancee    Sep 27, 2022   (7 reactions) Algorithm: Imagine three points. They form a corner. Cut the tip off the corner. You now have four points, and a smoother connection between the end points. Cutting close to the tip of the corner makes it less round. Cutting close to the midpoint of each edge makes it more round. Final smoothness B4A Example [B4X] AS CardSlider - Text animation - Alexander Stolte    Feb 24, 2024   (10 reactions) GetView(0).TextColor = xui.Color_ARGB(80,255,255,255) 'Inactive Item AS_CardSlider1.GetPanel(NewIndex).GetView(0).SetTextSizeAnimated(250,20) 'Active Item AS_CardSlider1.GetPanel(OldIndex).GetView(0).SetTextSizeAnimated(250,13) 'Inactive Item End Sub #If B4J Private Sub xlbl_Year_Mous B4A Code Snippet [B4X] Testing hundreds of object or view animations - TILogistic    Sep 21, 2024   (8 reactions) I'm testing an animation class I created for cross-platform (B4X).
ref.
https://spicyyoghurt.com/tools/easing-functions
157181
157182
157185 B4J Code Snippet [B4X] [BitmapCreator] Layout implode animation - Erel    Apr 22, 2018   (12 reactions) dx = (pg.SrcX - pg.x) / steps
pg.dy = (pg.SrcY - pg.y) / steps
Next
Next
Dim r As B4XRect
r.Initialize(0, 0, 0, 0)
For i = 0 To steps - 1
bc.FillRect(xui.Color_Transparent, bc.TargetRect)
For x = 0 To w - 1
For y = 0 To h - 1
Dim B4A Tutorial ADeveloper - B4A tutorials - ADeveloper (first post)    Apr 06, 2021   (4 reactions) The second tutorial for B4XDialog:
7Jg7YIWm9z0
Which talks about custom animation for B4XDialog and response of the dialog and ....
The following tutorial will be about making custom dialog and custom layout in B4XDialog B4A Question Where I can find a Tutorial for Animation Library - Erel (first post)    May 04, 2020 Don't use it.
Use the built-in SetLayoutAnimated and the other "Animated" methods. Best to use B4XView (XUI) which includes more features. Page: 1   2   3   4   5   6   7   Powered by ColBERT |