animation

CSS Animation Properties

Submitted by alpha_luna on
What is animation in CSS3? The animation property is a shorthand property that allows to setting six of the animation properties at once. It has a following syntax: animation: name | duration | timing-function | delay | iteration-count | direction | fill-mode | play-state | initial | inherit ; Property Values: name - it’s specifies the name of the keyframe you want to bind to the selector

Swinging Image using CSS3 Animation

Submitted by Jeprox on
In this tutorial we are going to learn how to make an image swing continously using CSS3 keyframe animation. This effect has become popular for images like signs and discounts in websites for this they get the attention of the users or visitors. You can play around with the codes try to change the values and see the changes. Here's the complete source code: Swinging Image CSS3 Animation Swinging

Animation - Blinking and Changing Color Effects of Text (VB.NET)

Submitted by donbermoy on
This tutorial will teach you how to create a program that has a blinking and changing color of the texts using vb.net. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add only one label named DspLabel1 and one timer named Timer1. 3.

3D Cube Rotate Animation in CSS

Submitted by GeePee on
In this project, you will learn how to animate a 3D cube rotating using CSS. This is pure css with no javascript code has been included. In my example, I used it as an information of film showing or it can also be used in displaying ads. The cube is rotating continuously on it's certain speed(depending of what speed you want to set). Try this. It's a cool animation. Hope you learn from this.

Changing Colors Animation Using CSS

Submitted by GeePee on
This project will teach you how to create continuously changing colors animation using CSS3. We have to define individual keyframes at percentage points(0% is the starting and 100% is the ending) or we can use from/to keywords. We also have to set the background-color. On the 0% is blue , 25% is red, 50% is green, 75% is purple and then 100% is blue. The colors will continuously change every

Animated Text in C#

Submitted by donbermoy on
Today in C#, I will teach you how to create a program than can have an animated text. With this, you don’t need to drag any Label in the Form. It is because, the codes will be the one to make a text that will be appear in the Form by using the C# language. So, now let's start this tutorial! 1. Let's start with creating a Windows Form Application in C# for this tutorial by following the following steps in Microsoft Visual Studio 2010: Go to File, click New Project, and choose Windows Application. 2.