Kickstrap
decodering: A full version of Twitter’s Bootstrap with themes, enhancements, and other goodies.
A pretty useful resource if you need to bust out a website in a hurry.
Reblogged Via: decodering
GO AWAY
decodering: A full version of Twitter’s Bootstrap with themes, enhancements, and other goodies.
A pretty useful resource if you need to bust out a website in a hurry.
Reblogged Via: decodering
A new responsive-slider plugin that utilizes the latest in CSS3 2D & 3D transforms with proper fallbacks. Those cube animations are lovely. I know it’s been a minute since I’ve posted a web freebie on here. I apologize.
Uhhh. Yes.
Source: flavorwire.comThis is pretty useful. If you’ve ever tried to tackle google maps, you would understand what a welcome plugin this is. Because it’s a pain in the ass. Yes.
Reblogged Via: Front End Development Blog by Greg Babula Source: thechangeloggregbabula:
Google Maps is extremely powerful, but using the JavaScript API can be a bit complex at times. That is exactly the problem that @HPNeo is trying to solve with GMaps.There are a few requirements: jQuery and the Google Maps API. Just make sure you add all three JavaScript libraries to your page and you will be good to go:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script> <script type="text/javascript" src="https://raw.github.com/HPNeo/gmaps/master/gmaps.js"></script>Adding a basic map is very easy:
new GMap({ div: "#map", lat: 39.905588, lng: -75.16644, zoom: 20 // (Optional: defaults to 15) });They also have support for markers, geolocation, geocoding, and more.
The project could use some documentation help, so I would encourage you to fork the repository and get involved!