reverse

Animation Direction in CSS3

Submitted by alpha_luna on
What is animation-direction? The animation-direction property specifies whether or not the animation should play in reverse direction or in alternate cycles. If the animation-direction value is "alternate", the animation played as normal every odd time (1,3,5,etc...) and backwards every even time (2,3,6,etc...). Note: If the animation is set to play only once, this property will have no effect

Reverse a string

Submitted by Erick_Ny on
This tutorial will teach you how to reverse a string in java . The following are the steps to run this program: 1- Extract reverseString.zip 2- Open Eclipse IDE 3- click file menu and Import 4- general/existing projects into workspace/next 5- check, select root directory and click browse 6- locate the project folder then click ok/finish If you find my code useful, send me an email at: ainaerik@

Reverse a Number in Java GUI

Submitted by donbermoy on
In this tutorial, i will going to teach you how to create a program in Java GUI that reverses an inputted number. Now let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of reverse.java. 2. Import javax.swing package. Hence we will use a GUI (Graphical User Interface) here like the inputting the number.

Palindrome in Java GUI

Submitted by donbermoy on
We all know that palindrome is a word or phrase that reads the same backward as forward. Here in this tutorial, we will create a program that can determine if the word inputted is a palindrome or not. Now, let's start this tutorial! 1. Open JCreator or NetBeans and make a java program with a file name of palindrome.java. 2. Import javax.swing package.

Reverse a String in VB6

Submitted by donbermoy on
Hi! In this tutorial, we will create a program that reverses a string. I already made this one in vb.net but it has different code in vb6.0. Now, let's start this tutorial! 1.Let's start this tutorial by following the following steps in Microsoft Visual Basic 6.0: Open Microsoft Visual Basic 6.0, click Choose Standard EXE, and click Open. 2. Next, add only one Button named Command1 and labeled it as "Reverse".