jQ/jS
Org Chart
Zebra Calendar
Flipper JQ
Animated Divs,etc
Uploader Application
Detects Screen width
Javascript Print Button
Mind Map ➽
Video Body BG ➽
Timed Refresh Page
Accordian 2 ➽
Slide Gallery ➽
Table Sorter ➽
Auto Complete
AJax Beginings ➽
Read More ➽
Display Random Text
Marquee
Count Down
Learn JQuery ➽
Links ➽
Snippets ➽
Expose
Slider
Drop and Drag
Rotate 360
Sticky Nav
Persistant Div
Up Loader App (zip)
Fix element/selector on scroll
Wizards
CSS
Media Screen Wizard ➽
CSS Circle Button
CSS Properties Explained
CSS Vocabulary
Bootstrap References ➽
Icon in LI
Floating Button Bar
CSS Accordian ➽
Custom Fluid Wizard
Multple Columns css
100% Height
Shadows/Radious
Table Styling
Listamatic
100% Background Img
W3 Css Validator
W3 Markup Validator
CSS Reset
Less Wizards ➽
CSS Table Styling
Responsive Menu ➽
Animation
Responsive
Media Screen Wizard ➽
Responsive Youtube
Responsive Images
DW Resposnive CSS ➽
QUICK Responsive Email Wizard
Responsive for DW
Responsive for PHP
Moose Loose Delux Theme ➽
Scroll Thing Theme ➽
responsive table
Misc
Contract Creator
Moose View ➽
HTML5 Fixes
Gradient Image
404
WebED
Forms
Database
SPA Complete
P.I.G.
Vids
Moose Peek
Create this PHP file. Place in directory to see all the Graphics in your directory
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<HTML>
<HEAD>
<TITLE>Directory Browser</TITLE>
<LINK REV="made" HREF="mailto:Tunes@SessioNite.com">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
</HEAD>
<body style="background-color:#000000">
<style>
img {-webkit-box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.27);
-moz-box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.27);
box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.27);}
p{font: 14px "arial"; font-weight: normal; color: #000000;}
</style>
<?php
$files = glob("*.*");
for ($i=1; $i<count($files); $i++)
{
$num = $files[$i];
print "<div style=\"background-color:#eeeeee;float:left;padding:15px;margin:5px;text-align:center;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;\">";
print "<p>";
print $num."";
print "<br><br>";
echo '<img src="'.$num.'" alt=>'."</div>";
}
?>
</body>
</HTML>