Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7951819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T02:40:40+00:00 2026-06-04T02:40:40+00:00

Do you know of any free components/libraries, which allow to achieve a 3D flip

  • 0

Do you know of any free components/libraries, which allow to achieve a 3D flip effect?

Demo here: snorkl.tv

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T02:40:41+00:00Added an answer on June 4, 2026 at 2:40 am

    Something like this might do the similar effect (just another attempt to show how this could be done, also not so precise, but it’s just for fun since you’ve asked for a library or component). The principle is based on a rectnagle that is being resized and centered in the paint box where the card is being rendered with the StretchDraw function:

    Unit1.pas

    unit Unit1;
    
    interface
    
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, ExtCtrls, PNGImage;
    
    type
      TCardSide = (csBack, csFront);
      TForm1 = class(TForm)
        Timer1: TTimer;
        Timer2: TTimer;
        PaintBox1: TPaintBox;
        procedure FormCreate(Sender: TObject);
        procedure FormDestroy(Sender: TObject);
        procedure Timer1Timer(Sender: TObject);
        procedure Timer2Timer(Sender: TObject);
        procedure PaintBox1Click(Sender: TObject);
        procedure PaintBox1Paint(Sender: TObject);
      private
        FCardRect: TRect;
        FCardSide: TCardSide;
        FCardBack: TPNGImage;
        FCardFront: TPNGImage;
      public
        { Public declarations }
      end;
    
    var
      Form1: TForm1;
    
    implementation
    
    {$R *.dfm}
    
    procedure TForm1.FormCreate(Sender: TObject);
    begin
      FCardSide := csBack;
      FCardRect := PaintBox1.ClientRect;
      FCardBack := TPNGImage.Create;
      FCardBack.LoadFromFile('tps2N.png');
      FCardFront := TPNGImage.Create;
      FCardFront.LoadFromFile('Ey3cv.png');
    end;
    
    procedure TForm1.FormDestroy(Sender: TObject);
    begin
      FCardBack.Free;
      FCardFront.Free;
    end;
    
    procedure TForm1.Timer1Timer(Sender: TObject);
    begin
      if FCardRect.Right - FCardRect.Left > 0 then
      begin
        FCardRect.Left := FCardRect.Left + 3;
        FCardRect.Right := FCardRect.Right - 3;
        PaintBox1.Invalidate;
      end
      else
      begin
        Timer1.Enabled := False;
        case FCardSide of
          csBack: FCardSide := csFront;
          csFront: FCardSide := csBack;
        end;
        Timer2.Enabled := True;
      end;
    end;
    
    procedure TForm1.Timer2Timer(Sender: TObject);
    begin
      if FCardRect.Right - FCardRect.Left < PaintBox1.ClientWidth then
      begin
        FCardRect.Left := FCardRect.Left - 3;
        FCardRect.Right := FCardRect.Right + 3;
        PaintBox1.Invalidate;
      end
      else
        Timer2.Enabled := False;
    end;
    
    procedure TForm1.PaintBox1Click(Sender: TObject);
    begin
      Timer1.Enabled := False;
      Timer2.Enabled := False;
      FCardRect := PaintBox1.ClientRect;
      Timer1.Enabled := True;
      PaintBox1.Invalidate;
    end;
    
    procedure TForm1.PaintBox1Paint(Sender: TObject);
    begin
      case FCardSide of
        csBack: PaintBox1.Canvas.StretchDraw(FCardRect, FCardBack);
        csFront: PaintBox1.Canvas.StretchDraw(FCardRect, FCardFront);
      end;
    end;
    
    end.
    

    Unit1.dfm

    object Form1: TForm1
      Left = 0
      Top = 0
      Caption = 'Form1'
      ClientHeight = 203
      ClientWidth = 173
      Color = clBtnFace
      DoubleBuffered = True
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      OldCreateOrder = False
      Position = poScreenCenter
      OnCreate = FormCreate
      OnDestroy = FormDestroy
      PixelsPerInch = 96
      TextHeight = 13
      object PaintBox1: TPaintBox
        Left = 48
        Top = 40
        Width = 77
        Height = 121
        OnClick = PaintBox1Click
        OnPaint = PaintBox1Paint
      end
      object Timer1: TTimer
        Enabled = False
        Interval = 10
        OnTimer = Timer1Timer
        Left = 32
        Top = 88
      end
      object Timer2: TTimer
        Enabled = False
        Interval = 10
        OnTimer = Timer2Timer
        Left = 88
        Top = 88
      end
    end
    

    Cards

    enter image description here enter image description here

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here 'free' means no need to buy any license. As I know VCL comes
Does anybody know of any good and free statistics libraries for .Net? I am
Does anyone know of any (free) tools that will convert an old Delhi 5
I want to know if there is any free tool to test the performance
Does anyone know if there are any (ideally free) alternatives to SilkTest for automated
Do you know any university which has its C++ course available online? I'm looking
Do you know any free component, compatible with Delphi 2010 or XE to manage
Is anybody know any free round button for development in Windows-mobile ? thank's in
I would like to know is there any elite components for Qt that can
Does anyone know any free provider for MySQL using the Entity Framework (Code First)?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.