gitextract_vx1aefsx/ ├── Anime_Template_Project/ │ ├── Accordion/ │ │ ├── AccordionCard.cpp │ │ ├── AccordionCard.h │ │ ├── CMakeLists.txt │ │ ├── accordionwidget.cpp │ │ ├── accordionwidget.h │ │ ├── img.qrc │ │ └── main.cpp │ ├── Adaptive_Carousel/ │ │ ├── daen_no_kado.cpp │ │ ├── daen_no_kado.h │ │ ├── latticed_circle_button.cpp │ │ └── latticed_circle_button.h │ ├── Blur_Text/ │ │ ├── fuzzytextwidget.cpp │ │ └── fuzzytextwidget.h │ ├── Carousel_card/ │ │ ├── card_button.cpp │ │ ├── card_button.h │ │ ├── card_text.cpp │ │ ├── card_text.h │ │ ├── carousel_card.cpp │ │ ├── carousel_card.h │ │ ├── carrier_card.cpp │ │ └── carrier_card.h │ ├── Eye_of_Cthulhu/ │ │ ├── JellyfishWidget.cpp │ │ └── JellyfishWidget.h │ ├── Flowing_Gradient_Font/ │ │ ├── widget.cpp │ │ └── widget.h │ ├── FractalWidget/ │ │ ├── CMakeLists.txt │ │ ├── fractalwidget.cpp │ │ ├── fractalwidget.h │ │ ├── fractalworker.cpp │ │ ├── fractalworker.h │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ └── mainwindow.h │ ├── Generative_Lines/ │ │ ├── widget.cpp │ │ └── widget.h │ ├── Glitch_Text/ │ │ ├── GlitchTextWidget.cpp │ │ └── GlitchTextWidget.h │ ├── Honeycomb_Grid/ │ │ ├── hexagonwidget.cpp │ │ ├── hexagonwidget.h │ │ ├── mainwindow.cpp │ │ └── mainwindow.h │ ├── Letter_Glitch/ │ │ ├── CMakeLists.txt │ │ ├── GlitchEffectWidget.cpp │ │ ├── GlitchEffectWidget.h │ │ └── main.cpp │ ├── Liquid/ │ │ ├── image_processing.cpp │ │ ├── image_processing.h │ │ ├── liquid_button.cpp │ │ ├── liquid_button.h │ │ ├── widget.cpp │ │ └── widget.h │ ├── LoadingAnime/ │ │ ├── Bouncing_Ball_Loading.h │ │ ├── CMakeLists.txt │ │ ├── Rectangle_Loading.h │ │ ├── Square_Pseudo_Bounce_Loading.cpp │ │ ├── Square_Pseudo_Bounce_Loading.h │ │ ├── black_white_ball_loading.cpp │ │ ├── black_white_ball_loading.h │ │ ├── bouncing_ball_loading.cpp │ │ ├── hexagonloaderwidget.cpp │ │ ├── hexagonloaderwidget.h │ │ ├── line_loading.cpp │ │ ├── line_loading.h │ │ ├── line_rotating_along_rectangular_border.cpp │ │ ├── line_rotating_along_rectangular_border.h │ │ ├── main.cpp │ │ ├── rectangle_loading.cpp │ │ ├── regular_loading.cpp │ │ ├── regular_loading.h │ │ ├── ring_loading.cpp │ │ ├── ring_loading.h │ │ ├── widget.cpp │ │ └── widget.h │ ├── Login_interface/ │ │ ├── hollow_button.cpp │ │ ├── hollow_button.h │ │ ├── input_box.cpp │ │ ├── input_box.h │ │ ├── login_button.cpp │ │ ├── login_button.h │ │ ├── login_form.cpp │ │ ├── login_form.h │ │ ├── other_login_buttons.cpp │ │ ├── other_login_buttons.h │ │ ├── registration_form.cpp │ │ ├── registration_form.h │ │ ├── responsive_form.cpp │ │ ├── responsive_form.h │ │ ├── scroll_bar.cpp │ │ ├── scroll_bar.h │ │ ├── transparent_transition_interface.cpp │ │ └── transparent_transition_interface.h │ ├── Magnet_Lines/ │ │ ├── CMakeLists.txt │ │ ├── RotatableLinesWidget.cpp │ │ ├── RotatableLinesWidget.h │ │ └── main.cpp │ ├── Mimic_Button/ │ │ ├── depressed_button.cpp │ │ ├── depressed_button.h │ │ ├── img.qrc │ │ ├── widget.cpp │ │ └── widget.h │ ├── Particle_Generation/ │ │ ├── CMakeLists.txt │ │ ├── ParticleWidget.h │ │ ├── main.cpp │ │ ├── mainwindow.cpp │ │ ├── mainwindow.h │ │ └── particlewidget.cpp │ ├── Physical_Text/ │ │ ├── DraggableElasticObject.cpp │ │ ├── draggableelasticobject.h │ │ └── main.cpp │ ├── PixelTransition/ │ │ ├── pixel_transition.cpp │ │ ├── pixel_transition.h │ │ ├── widget.cpp │ │ └── widget.h │ ├── Point_Wave/ │ │ ├── widget.cpp │ │ └── widget.h │ ├── Pressure_Block/ │ │ ├── squarepressurewidget.cpp │ │ └── squarepressurewidget.h │ ├── SplitText/ │ │ ├── Single_Text.cpp │ │ ├── Single_Text.h │ │ ├── SplitText.cpp │ │ └── SplitText.h │ ├── Star_Sky_Connection/ │ │ ├── MovingPointsWidget.cpp │ │ └── MovingPointsWidget.h │ ├── TreeScene/ │ │ ├── TreeScene.cpp │ │ └── TreeScene.h │ ├── Wave/ │ │ ├── waveswidget.cpp │ │ └── waveswidget.h │ ├── Zipper_Slider/ │ │ ├── pathwidget.cpp │ │ └── pathwidget.h │ ├── button_class/ │ │ ├── diffusion_button.cpp │ │ ├── diffusion_button.h │ │ ├── wave_button.cpp │ │ └── wave_button.h │ ├── dial_class/ │ │ ├── knob_page.cpp │ │ ├── knob_page.h │ │ ├── temperature_dial.cpp │ │ └── temperature_dial.h │ ├── json/ │ │ └── Anime_care_attributes.json │ ├── src.qrc │ └── utility_class/ │ ├── timer_animation.cpp │ ├── timer_animation.h │ ├── timer_animationgroup.cpp │ └── timer_animationgroup.h ├── LICENSE └── README.md