0

Experimenting with MongoDB from C#

Posted by K. Scott Allen on Oct 14, 2009 in Dotnet  | View Original Article
 

I’ve often felt that we treat relational databases as a hammer to use with every kind of nail, screw, bolt, rivet, metric nut, and wall anchor we encounter in software development. The modern relational databases is a marvelous piece of engineering, and we have centuries of collective experience in designing, optimizing, securing, and managing them, but they just aren’t the best fit for every scenario.

The last few months I’ve been keeping an eye on the growing No-SQL movement. I’d like to make room for the No-SQL conference (nosqleast – their motto is: select fun, profit from real_world where relational=false;), but I’ll just have to wait for a debrief from Matt P. Here are a couple great blog posts for background on the No-SQL thing:

MongoDB I wanted to experiment with a document oriented database myself and chose MongoDB. From the FAQ:

MongoDB is an document-oriented DBMS. Think of it as a persistent object store. It is neither a relational database, nor even "table oriented" like Amazon SimpleDB or Google BigTable. If you have used object-relational mapping layers before in your programs, you will find the Mongo interface similar to use, but faster, more powerful, and less work to set up.

I chose MongoDB because it looked easy to setup and run with.

  1. Download and extract the binaries from MongoDB downloads.
  2. Create a c:\data\db directory (that’s the default storage location – you can override it)
  3. Run the MongoDB daemon – mongod.exe

To talk to MongoDB I used mongodb-csharp. You can either download the source as a zip file, or use a Git client like Git on Windows to clone the github repository. Sounds difficult, but Git is easy once you’ve adopted to the terminology, and as a bonus, it’s screaming fast. There is a Visual Studio solution included with the sources, so you can open it, build it, and out pops a MongoDB.Driver assembly.

Connecting to a database looks like this:

var mongo = new Mongo();
mongo.Connect();
var db = mongo.getDB("movieReviews");

I’m running MongoDB on the local machine and it’s listening on the default port with no special security settings. That simplifies the code, but also notice I can ask for a database (movieReviews), and if it doesn’t exist MongoDB will create the database for me. I don’t need to create tables or schemas or setup primary keys. It just works. I’m thinking document oriented databases are to relational databases what dynamic languages are to static languages.

The next step is to get/create a collection and start adding documents to it.

var movies = db.GetCollection("movies");

var movie = new Document();
movie["title"] = "Star Wars";
movie["releaseDate"] = DateTime.Now;
movies.Insert(movie);

A collection is somewhat analogous to a table in the RDBMS world, but instead of rows and columns a collection is a bunch of documents that internally are stored in a binary JSON format (BSON). The documents can contain anything – they are schemaless, but MongoDB understands how to index and query the documents.

var spec = new Document();
spec["title"] = "Star Wars";
var starWars = movies.FindOne(spec);

With a few more abstractions (and a little bit of LINQ), document oriented databases could be a huge hit in .NET. Although, they might be better aligned with a language that runs on the DLR…

 
0

OneFileCMS For Simple File and Content Management

Posted by W3Avenue Team on Oct 14, 2009 in Javascript, PHP  | View Original Article
 

OneFileCMS is a flat, lightweight, one file CMS (Content Management System) entirely contained in an easy-to-implement, highly customizable, database-less PHP script. It comes with a code editor and all the basic necessities of an FTP application, allowing you to maintain a whole website completely in-browser without any external programs.

OneFileCMS requires your website to be hosted on UNIX/Linux machine with Apache, PHP5 and ability to change file permission. OneFileCMS is 100% re-brandable; CSS and images are externally hosted CSS but you can easily move them to your own server for customization.

Developed by Tommy; OneFileCMS is available for download under Creative Commons Attribution Non-Commercial ShareAlike License. You can find further information, demo & download on OneFileCMS Website.

Similar Posts:

Tags: , ,

 
0

New Video Feature: Jump Or Skip Time

Posted by Mehul Harry (Developer Express) on Oct 14, 2009 in ASP.Net, Dotnet  | View Original Article
 

Recently, we added a super-useful little feature so you can skip around in the videos without having the video fully loaded. All the videos on the DevExpress Channel are now converted to support the new feature.

How does it work?

  1. We inject ‘metadata’ into the video as a final step in the production process.
  2. You click to any point in the video and the player will start streaming from the new cue point. Take a look at the shot of the 9 minute screencast below. I’ve clicked to the 4 minute mark and video player started streaming from this point forward. Sweet!

DevExpress Channel: Jump To Time Point

Who does #2 work for?

Everyone! Especially on those really long videos. For example, if you had to stop watching a video half way through and wanted to continue where you'd left off, you're just one jump point away.

But wait, there’s more…

One of our internal teams is hard at work on a complete site redesign. The new site has a lot of your suggestions like a playlist feature built-in. Stay tuned for details in the coming weeks.

Tags:

 
0

Upcoming RIA Events

Posted by Rich Tretola on Oct 14, 2009 in Flex  | View Original Article
  Here are a few events that are in the near future you may wish to attend: BFusion / BFlex - Two days of hands-on training from the experts in Adobe Flex and ColdFusion. ColdFusion — October 24, 2009 Flex —...

Tags: ,

 
0

Photoshop For Developers

Posted by Jesse Freeman on Oct 14, 2009 in Flex  | View Original Article
  Advanced Flash Tactics or AFTs are techniques that come from deep within the Flash Art Of War, the oldest Flash military treatise in the world. Each AFT is designed to be quickly digested, usually only taking a few minutes to get up and running, and contains valuable information you can directly apply to your next Flash campaign. In this AFT I will go over - Photoshop for Developers.

Tags: , , , ,

 
0

CSS Differences in Internet Explorer 6, 7 and 8

Posted by Louis Lazaris on Oct 14, 2009 in CSS, Design & Graphics  | View Original Article
 

  

One of the most bizarre statistical facts in relation to browser use has to be the virtual widespread numbers that currently exist in the use of Internet Explorer versions 6, 7 and 8. As of this writing, Internet Explorer holds about a 65% market share combined across all their currently used browsers. In the web development community, this number is much lower, showing about a 40% share.

Screenshot

The interesting part of those statistics is that the numbers across IE6, IE7, and IE8 are very close, preventing a single Microsoft browser from dominating browser stats — contrary to what has been the trend in the past. Due to these unfortunate statistics, it is imperative that developers do thorough testing in all currently-used Internet Explorer browsers when working on websites for clients, and on personal projects that target a broader audience.

Thanks to the many available JavaScript libraries, JavaScript testing across different browsers has become as close to perfect as the current situation will allow. But this is not true in CSS development, particularly in relation to the three currently used versions of Internet Explorer.

This article will attempt to provide an exhaustive, easy-to-use reference for developers desiring to know the differences in CSS support for IE6, IE7 and IE8. This reference contains brief descriptions and compatibility for:

  • Any item that is supported by one of the three browser versions, but not the other two
  • Any item that is supported by two of the three browser versions, but not the other one

This article does not discuss:

  • Any item that is not supported by any of the three browser versions
  • Proprietary or vendor-specific CSS

Therefore, the focus is on differences in the three, not necessarily lack of support. The list is divided into five sections:

Selectors & Inheritance

Child Selectors

Example
body>p {
	color: #fff;
}
Description

The child selector selects all elements that are immediate children of a specified parent element. In the example above, body is the parent, and p is the child.

Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

In IE7, the child selector will not work if there is an HTML comment between the parent item and the child.

Chained Classes

Example
.class1.class2.class3 {
	background: #fff;
}
Description

Chained classes are used when the same HTML element has multiple classes declared, like this:

<div class="class1 class2 class3">
<p>Content here.</p>
</div>
Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

IE6 appears to support this property, because it matches the last class in the chain to an element having that class, however, it does not restrict the class to an element that has all the classes in the chain, like it should.

Attribute Selectors

Example
a[href] {
	color: #0f0;
}
Description

This selector allows an element to be targeted only if it has the specified attribute. In the example above, all anchor tags that have href attributes would qualify, but not anchor tags that did not have href attributes.

Support
IE6
No
IE7
Yes
IE8
Yes

Adjacent Sibling Selectors

Example
h1+p {
	color: #f00;
}
Description

This selector targets siblings that are adjacent to the specified element. The example above would target all paragraph tags that are siblings of, and come directly after, primary heading tags. For example:

<h1>heading</h1>
<p>Content here.</p>
<p>Content here.</p>

In the code above, the CSS styles specified would target only the first paragraph, because it is a sibling to the <h1> tag and is adjacent. The second paragraph is a sibling, but is not adjacent.

Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

In IE7, the adjacent sibling selector will not work if there is an HTML comment between the siblings.

General Sibling Selectors

Example
h1~p {
	color: #f00;
}
Description

This selector targets all siblings that appear after a specified element. Applying this selector to the HTML example given in the previous section will select both paragraph tags, however, if one of the paragraphs appeared before the heading, that paragraph would not be targeted.

Support
IE6
No
IE7
Yes
IE8
Yes

Pseudo-Classes and Pseudo-Elements

Descendant Selector After :hover Pseudo-Class

Example
a:hover span {
	color: #0f0;
}
Description

An element can be targeted with a selector after a :hover pseudo class, similar to how any descendant selector works. The above example would change the font color inside all <span> elements inside of anchor elements while the anchor is hovered over.

Support
IE6
No
IE7
Yes
IE8
Yes

Chained Pseudo-Classes

Example
a:first-child:hover {
	color: #0f0;
}
Description

Pseudo-classes can be chained to narrow element selection. The above example would target every anchor tag that is the first child of its parent and apply a hover class to it.

Support
IE6
No
IE7
Yes
IE8
Yes

:hover on Non-Anchor Elements

Example
div:hover {
	color: #f00;
}
Description

The :hover pseudo-class can apply a hover, or rollover state, to any element, not just anchor tags.

Support
IE6
No
IE7
Yes
IE8
Yes

:first-child Pseudo-Class

Example
div li:first-child {
	background: blue;
}
Description

This pseudo-class targets each specified element that is the first child of its parent.

Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

In IE7, the first-child pseudo-class will not work if an HTML comment appears before the targeted first child element.

:focus Pseudo-Class

Example
a:focus {
	border: solid 1px red;
}
Description

This pseudo-class targets any element that has keyboard focus.

Support
IE6
No
IE7
No
IE8
Yes

:before and :after Pseudo-Elements

Example
#box:before {
	content: "This text is before the box";
}

#box:after {
	content: "This text is after the box";
}
Description

This pseudo-element places generated content before or after the specified element, used in conjunction with the content property.

Support
IE6
No
IE7
No
IE8
Yes

Property Support

Virtual Dimensions Determined by Position

Example
#box {
	position: absolute;
	top: 0;
	right: 100px;
	left: 0;
	bottom: 200px;
	background: blue;
}
Description

Specifying top, right, bottom, and left values for an absolutely positioned element will give the element “virtual” dimensions (width and height), even if width and height are not specified.

Support
IE6
No
IE7
Yes
IE8
Yes

Min-Height & Min-Width

Example
#box {
	min-height: 500px;
	min-width: 300px;
}
Description

These properties specify minimum values for either height or width, allowing a box to be larger, but not smaller, than the specified minimum values. They can be used together or individually.

Support
IE6
No
IE7
Yes
IE8
Yes

Max-Height & Max-Width

Example
#box {
	max-height: 500px;
	max-width: 300px;
}
Description

These properties specify maximum values for either height or width, allowing a box to be smaller, but not larger, than the specified minimum values. They can be used together or individually.

Support
IE6
No
IE7
Yes
IE8
Yes

Transparent Border Color

Example
#box {
	border: solid 1px transparent;
}
Description

A transparent border color allows a border to occupy the same space as would be occupied if the border was visible, or opaque.

Support
IE6
No
IE7
Yes
IE8
Yes

Fixed-Position Elements

Example
#box {
	position: fixed;
}
Description

This value for the position property allows an element to be positioned absolutely relative to the viewport.

Support
IE6
No
IE7
Yes
IE8
Yes

Fixed-Position Background Relative to Viewport

Example
#box {
	background-image: url(images/bg.jpg);
	background-position: 0 0;
	background-attachment: fixed;
}
Description

A fixed value for the background-attachment property allows a background image to be positioned absolutely relative to the viewport.

Support
IE6
No
IE7
Yes
IE8
Yes
Bugs

IE6 incorrectly fixes the background image in relation to the containing parent of the element that has the background set, therefore this value only works in IE6 when its used on the root element.

Property Value “inherit”

Example
#box {
	display: inherit;
}
Description

Applying the value inherit to a property allows an element to inherit the computed value for that property from its containing element.

Support
IE6
No
IE7
No
IE8
Yes
Bugs

IE6 and IE7 do not support the value inherit except when applied to the direction and visibility properties.

Border Spacing on Table Cells

Example
table td {
	border-spacing: 3px;
}
Description

This property sets the spacing between the borders of adjacent table cells.

Support
IE6
No
IE7
No
IE8
Yes

Rendering of Empty Cells in Tables

Example
table {
	empty-cells: show;
}
Description

This property, which only applies to elements that have their display property set to table-cell, allows empty cells to be rendered with their borders and backgrounds, or else hidden.

Support
IE6
No
IE7
No
IE8
Yes

Vertical Position of a Table Caption

Example
table {
	caption-side: bottom;
}
Description

This property allows a table caption to appear at the bottom of a table, instead at the top, which is the default.

Support
IE6
No
IE7
No
IE8
Yes

Clipping Regions

Example
#box {
	rect(20px, 300px, 200px, 100px)
}
Description

This property specifies an area of a box that is visible, making the rest “clipped”, or invisible.

Support
IE6
No
IE7
No
IE8
Yes
Bugs

Interestingly, this property works in IE7 if the deprecated comma-less syntax is used (i.e. whitespace between the clipping values instead of commas).

Orphaned and Widowed Text in Printed Pages

Example
p {
	orphans: 4;
}

p {
	widows: 4;
}
Description

The orphans property specifies the minimum number of lines to display at the bottom of a printed page. The widows property specifies the minimum number of lines to display at the top of a printed page.

Support
IE6
No
IE7
No
IE8
Yes

Page Breaks Inside Boxes

Example
#box {
	page-break-inside: avoid;
}
Description

This property specifies whether a page break should occur inside of a specified element or not.

Support
IE6
No
IE7
No
IE8
Yes

Outline Properties

Example
#box {
	outline: solid 1px red;
}
Description

outline is the shorthand property that encompasses outline-style, outline-width, and outline-color. This property is preferable to the border property since it does not affect document flow, thus better aiding debugging of layout issues.

Support
IE6
No
IE7
No
IE8
Yes

Alternative Values for the Display Property

Example
#box {
	display: inline-block;
}
Description

The display property is usually set to block, inline, or none. Alternative values include:

  • inline-block
  • inline-table
  • list-item
  • run-in
  • table
  • table-caption
  • table-cell
  • table-column
  • table-column-group
  • table-footer-group
  • table-header-group
  • table-row
  • table-row-group
Support
IE6
No
IE7
No
IE8
Yes

Handling of Collapsible Whitespace

Example
p {
	white-space: pre-line;
}

div {
	white-space: pre-wrap;
}
Description

The pre-line value for the white-space property specifies that multiple whitespace elements collapse into a single space, while allowing explicitly set line breaks. The pre-wrap value for the white-space property specifies that multiple whitespace elements do not collapse into a single space, while allowing explicitly set line breaks.

Support
IE6
No
IE7
No
IE8
Yes

Other Miscellaneous Techniques

Media Types for @import

Example
@import url("styles.css") screen;
Description

A media type for an imported style sheet is declared after the location of the style sheet, as in the example above. In this example, the media type is "screen".

Support
IE6
No
IE7
No
IE8
Yes
Bugs

Although IE6 and IE7 support @import, they fail when a media type is specified, causing the entire @import rule to be ignored.

Incrementing of Counter Values

Example
h2 {
	counter-increment: headers;
}

h2:before {
	content: counter(headers) ". ";
}
Description

This CSS technique allows auto-incrementing numbers to appear before specified elements, and is used in conjunction with the before pseudo-element.

Support
IE6
No
IE7
No
IE8
Yes

Quote Characters for Generated Content

Example
q {
	quotes: "'" "'";
}

q:before {
	content: open-quote;
}

q:after {
	content: close-quote;
}
Description

Specifies the quote characters to use for generated content applied to the q (quotation) tag.

Support
IE6
No
IE7
No
IE8
Yes

Significant Bugs and Incompatibilities

Following is a brief description of various bugs that occur in IE6 and IE7 that are not described or alluded to above. This list does not include items that lack support in all three browsers.

IE6 Bugs

  • Doesn't support styling of the <abbr> element
  • Doesn't support classes and IDs that begin with a hyphen or underscore
  • <select> elements always appear at the top of the stack, unaffected by z-index values
  • :hover pseudo-class values are ignored if anchor pseudo-classes are not in the correct order (:link, :visited, :hover)
  • An !important declaration on a property is overridden by a 2nd declaration of the same property in the same rule set that doesn't use !important
  • height behaves like min-height
  • width behaves like min-width
  • Left and right margins are doubled on floated elements that touch their parents' side edges
  • Dotted borders appear identical to dashed borders
  • line-through value for text-decoration property appears higher on the text than on other browsers
  • List items for an ordered list that have a layout will not increment their numbers, leaving all list items preceded by the number "1"
  • List items don't support all possible values for list-style-type
  • List items with a specified list-style-image will not display the image if they are floated
  • Offers only partial support for @font-face
  • Some selectors will wrongly match comments and the doctype declaration
  • If an ID selector combined with a class selector is unmatched, the same ID selector combined with different class selectors will also be treated as unmatched

IE7 Bugs

  • List items for an ordered list that have a layout will not increment their numbers, leaving all list items preceded by the number "1"
  • List items don't support all possible values for list-style-type
  • List items with a specified list-style-image will not display the image if they are floated
  • Offers only partial support for @font-face
  • Some selectors will wrongly match comments and the doctype declaration

Some IE bugs not mentioned here occur only under particular circumstances, and are not specific to one particular CSS property or value. See the references below for some of those additional issues.

Further Resources

About the Author

Louis Lazaris is a writer and freelance Web Developer based in Toronto, Canada. He has 9 years of experience in the web development industry and posts web design articles and tutorials on his blog, Impressive Webs. You can follow Louis on Twitter or contact him using this form.


© Louis Lazaris for Smashing Magazine, 2009. | Permalink | 36 comments | Add to del.icio.us | Digg this | Stumble on StumbleUpon! | Tweet it! | Submit to Reddit | Forum Smashing Magazine
Post tags: ,

Tags:

 
0

Free Slideshow, Gallery And Lightboxes Scripts

Posted by Guest Posting on Oct 14, 2009 in Ajax, Design & Graphics  | View Original Article
 


by Obaid ur Rehman

For Web design projects, you may find yourself sometimes scrounging around for a simple yet useful image gallery and slideshow. But imagine having a huge collection of AJAX, JavaScript, Lightbox, CSS and Flash-based image galleries at your fingertips. Hopefully, this post will do the trick and provide all the resources you might need.

Free Slideshows And Lightboxes Scripts

Polaroid Gallery v.1.01
Polaroid Gallery v.1.01
Polaroid Gallery is a free open-source Flash gallery developed by Christopher Einarsrud.

Active Slideshow Pro
Active Slideshow Pro
Create dazzling multimedia presentations, slideshows and banners with Active Slideshow Pro. This extension builds on the success of Active Slideshow and gives you new spectacular effects and optimal control over your slides, texts, transitions and sounds.

PicLens Slideshow
PicLens Slideshow
Take your favourite images full-screen. This template is based on PicLens and combines the power of PicLens and Media RSS technology to give you an easy way to add immersive multimedia slideshows to your own website. The exported Piclens gallery can also easily be used as a complete Web page.

Plogger
Plogger
Plogger is the next generation in open-source photo gallery systems. A Web application not bloated with superfluous features or complicated configuration settings. Plogger is a simple yet powerful tool, everything you need to share your images with the world.

Shadowbox
Shadowbox
Shadowbox is an online media viewer application that supports all of the Web’s most popular media publishing formats. Shadowbox is written entirely in JavaScript and CSS and is highly customizable.

PhatFusion Slideshow
PhatFusion Slideshow
Transition between images.

Galleriffic
Galleriffic
Galleriffic was inspired by Mike Alsup’s Cycle plug-in, but with performance in mind for delivering a high volume of photos.

NoobSlide
NoobSlide

Fancybox
Fancybox
FancyBox is a tool for displaying images, HTML content and multimedia in a Mac-style Lightbox that floats over top the Web page.

Auto Generating Gallery
Auto Generating Gallery
If you are creating a fairly small gallery, hand-coding a grid of thumbnails will probably do. But for larger galleries or doing a lot of adding, editing and swapping of photos, you will probably want a better solution. And that solution is: an automatically generating photo gallery!

Dynamic Image Gallery and Slideshow
Dynamic Image Gallery and Slideshow

Barack Slideshow
Barack Slideshow
Pretty much everyone has seen Barack Obama’s website by now, which is clearly one of the most attractive ones done by a presidential candidate. Not only is it an example of state-of-the-art design, but it’s also nice to navigate and interact with.

jQuery Multimedia Portfolio
jQuery Multimedia Portfolio
This plug-in for jQuery automatically detects the extension of each media file and applies the right player.

(E)2 Photo Gallery
(E)2 Photo Gallery
(E)2 Photo Gallery is a open-source gallery built with MooTools JavaScript Library in a compact, modular and object-oriented framework. Tell the (E)2 Photo Gallery what folder your images are stored in, and it will automatically load them using PHP.

Flickrshow
Flickrshow
Flickrshow is a lightweight, cross-browser JavaScript slideshow, giving you an easy way to display Flickr images on your website.

ProtoFlow
ProtoFlow
ProtoFlow is a coverflow effect written in JavaScript. It uses Prototype and Scriptaculous to do the bulk of the work, and it uses Reflection.js to do all of the image reflection stuff.

Flip 3D Flash Slideshow
Flip 3D Flash Slideshow
A very nice Flash-based template. Each image that flips to the next casts a subtle reflection on the ground. The size of the images can be easily adjusted by editing the template files. And adding a background image is a piece of cake.

Imago
Imago
Imago is an AJAX image gallery focused on simplicity and ease of use. It’s in plain JavaScript and builds on the mature AJAX library MooTools. No server-side scripting is required! Neither is Flash. Whether your photos are on Flickr, SmugMug or your own server, Imago can show them.

Thumbnoo
Thumbnoo

PictoBrowser
PictoBrowser
A free Web application that displays Flickr and Picasa images on websites and blogs.

jQuery Gallery
jQuery Gallery
Here is an image gallery with smooth transitions, thumbnails and pretty reflections.

PostcardViewer
PostcardViewer
PostcardViewer is a free customizable Flash image viewer. The interface looks like a set of postcards shuffled on a table.

Spry
Spry
Spry is a JavaScript-based framework that enables the rapid development of AJAX-powered Web pages. Not a JavaScript guru? No problem. Spry is designed to feel like an extension of HTML and CSS, so anyone with basic Web production skills can create a next-generation Web experience by adding the power of AJAX.

3D Curve Photo Gallery
3D Curve Photo Gallery

PhotoViewer
PhotoViewer

Moopix
Moopix

Slideshowpro
Slideshowpro

Lightbox Photo Gallery and Slideshow for Picasa
Lightbox Photo Gallery and Slideshow for Picasa
This template uses the excellent Lightbox JavaScript by Lakesh Dakar.

Vista photo gallery
Vista photo gallery
Vista Photo Gallery is a photo album builder that allows you to create and publish rich, interactive photo galleries for your website.

UvumiTools Gallery Plugin
UvumiTools Gallery Plugin
The UvumiTools Gallery allows you to display fancy photo galleries on your website without requiring you to be a master programmer, thanks to the powerful MooTools JavaScript framework. Just include a couple JavaScript and CSS files.

Parallax Gallery
Parallax Gallery

TiltViewer
TiltViewer
TiltViewer is a free customizable 3-D Flash image viewing application.

jQuery plugin – Easy Image or Content Slider
jQuery plugin - Easy Image or Content Slider

Lightview
Lightview

DevKick Galleria
DevKick Galleria
Galleria is a JavaScript image gallery written in jQuery. It loads images one by one from an unordered list and displays thumbnails when each image is loaded. It can create thumbnails, scaled or unscaled, centered and cropped, inside a fixed thumbnail box defined by CSS.

FrogJS Javascript Gallery
FrogJS Javascript Gallery
FrogJS is a simple unobtrusive JavaScript gallery. It’s not a replacement for other thumbnail galleries such as Lightbox JS, but is a different way of showcasing galleries. It is best for page-by-page galleries, such as photo stories.

jQuery virtual tour
jQuery virtual tour

Featured Content Slider
Featured Content Slider

Flashnifties
Flashnifties
Flash image gallery, video gallery, MP3 music player, updatable Flash website with advanced navigation… all in one!

JQuery flickrGallery
Sliding Boxes and Captions with jQuery

prettyPhoto
prettyPhoto a jQuery lightbox clone
prettyPhoto is a jQuery-based Lightbox clone. It supports not only images but video, Flash, YouTube and iFrames. It’s a full-blown media Lightbox.

Flash Page Flip Photo Gallery template for Picasa
Flash Page Flip Photo Gallery template for Picasa

(al)

Copyright © 2010 Answer My Query All rights reserved. Maintained by Orange Brains .