CSS Image Hover Effects

Submitted by GeePee on
This project will teach you how different effect on hover using CSS. No javascript or jQuery codes used. With just few lines of css codes, you can be able to have these effects. I have here two examples of effect when hovered, blur and grayscale. We have to use the transition property in order to do this. For blur effect, we have to set blur to 5px. And for grayscale, we have to set grayscale to

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

How to Write/Read File in PHP

Submitted by GeePee on
In this project, you will learn how to create and read a text file using the php. There are 3 attributes in file handling. The w stands for writing, allows to open and write in the file. The r stands for reading, allows to open and read the file. And a stands for append, which allows to open and append in the file. Hope you learn from this.

API JSON Parsing in PHP

Submitted by Yorkiebar on

Introduction:

This tutorial will be on how to use an API which returns a JSON format of information in PHP.

API? JSON?

An API stands for an Application Program Interface and is used by external applications to connect with prebuilt libraries or sources of information via the API making the connection between the two. JSON is a form of information formatting, and stands for JavaScript Object Notation.

Social Networking Website

Submitted by ranjit1 on
some features 1.home page desgin like facebook 1.1:post status 1.2:upload Photo with description of photo 1.3:subcomment for your post by other users 1.4:simley icons in comments section 1.5 post comment in any language(ie:Nepali,English,Hindi etc) 1.6:rating system 1.7:Time in ago Format ie 2 sec ago 1.8:photo comment 1.9:Fetch youtube video through url 1.10:Notification system by ball bouncing 1

Mathematical Operation

Submitted by oursharingclub on
//Author :LearningPen //Date : 28/9/2014 //MyBolg :http://learningpen.blogspot.com/ //Language : C++ //Tool : Dev C++ Notice: Reference http://www.sourcecodester.com/cc/7937/c-functions-basic-mathematical-operation.html. According to some of his code, modified by myself,I also use a class structure. Thank you for using. MyBlog:http://learningpen.blogspot.com/ welcome. ^-^

How to Calculate Any Day of the Week?

Submitted by oursharingclub on
Author : Walter Date : September 27, 2014 Firday MyBlog : http://learningpen.blogspot.com/ Tool : Dev C++ Language : C++ Function : Calculate any day of the week? #include #include // for floor() #include // for getch() #include // for exit() #include // for system() using std::cout; using std::cin; //======================= void Menu( void ); int main( void ) { Menu(); return 0; }// End of main