Codrops’ New Style: Lessons learned from applying CSS3
In Articles, by Manoela Ilic
… or why your Mozilla could be slow when scrolling As you can see, we changed the style of our beloved site. The original WordPress theme can be found here: […]
In Articles, by Manoela Ilic
… or why your Mozilla could be slow when scrolling As you can see, we changed the style of our beloved site. The original WordPress theme can be found here: […]
In Playground, by cody
Here’s a list of 42 jQuery Navigation Techiques, Navigation plugins, and Tutorials built using jQuery: 1. How To Create A ‘Mootools Homepage’ Inspired Navigation Effect Using jQuery
In Articles, by Manoela Ilic
I found a really nice and simple jQuery dropdown menu on CSS Tricks and I thought, let’s add some neat style to it. You can find the original here: http://css-tricks.com/examples/SimplejQueryDropdowns/ […]
In Playground, by cody
Here’s a jQuery script for changing the stylesheet of an html page. The styles can be selected from the dropdown on top of the page. There are ten styles to […]
In Playground, by cody
Here is a jQuery example for a captcha in a registration form. In order to pass the “Are you human” test, the user has to drag the numbers from 1 […]
In Playground, by cody
A list of 42 jQuery image galleries, sliders, plugins and tutorials built using jQuery
In Playground, by cody
This is a sliding menu plugin for jQuery which fires on mouseover and mouseout events.
In Tutorials, by Manoela Ilic
Inspired by Tamsin Baker’s beautiful Photoshop brushes “Urban Scrawl” 1 and 2, I was trying to create some shadowed banners using some CSS3 properties. Visit Tamsin’s site and check out […]
In Playground, by chadking
The jQuery Style Slider allows you to change the style of certain html elements in real time and save the style setting to a MySQL database table using PHP. This […]
In Playground, by chadking
Update: There’s a new version of this Login Script. Here’s a PHP Login System, based on the one developed by jpmaster77: PHP Login System with Admin Features Focusing only on […]
In Playground, by Manoela Ilic
Here is a list of some highly valueable and functioning iPhone programming tutorials (list is open): iPhone View Switching Tutorial iPhone Coding – Learning About UIWebViews by Creating a Web […]
In Articles, by Manoela Ilic and Community
Here is a very neat set of arrow icons in 8 colors and png format (18 x 18 px):
In Tutorials, by Manoela Ilic
Here is the result of an experiment with fonts and css3 properties like text-shadow and box-shadow: Click here to download the ZIP file with the two overlay images: CSS3 Buttons […]
In Tutorials, by Manoela Ilic
Experimenting with CSS3, I created a big style registration form with rounded borders and shadow effects. The only image used is not the button, but the pen that serves as […]
In Playground, by cody
Here’s a simple way to execute the windows dir or the linux ls in PHP Windows: <?php $row = exec(‘dir’,$output,$error); while(list(,$row) = each($output)){ echo $row, “<BR>n”; } if($error){ echo “Error […]
In Playground, by cody
Here’s a simple function that calculates the number of days between two dates. <?php //day’s seconds = 86400 function days_between($day_i,$month_i,$year_i,$day_f,$month_f,$year_f){ $days_in_between = (mktime(0,0,0,$month_f,$day_f,$year_f) – mktime(0,0,0,$month_i,$day_i,$year_i))/86400; return $days_in_between; } ?> //If […]
In Playground, by chadking
The following is an example of using the transactional support in MySQL. Let’s assume we have two tables, USERTBL and EMAILTBL. Let’s consider the innodb engine, since it’s the most […]
In Playground, by Manoela Ilic
Heres a list of actions you should do in order to get PHP + MySQL working with UTF-8: 1. Database: CREATE DATABASE db_name CHARACTER SET utf8 DEFAULT CHARACTER SET utf8 […]