Skip to content

Instantly share code, notes, and snippets.

View mtinra's full-sized avatar

Mana Tinratreengam mtinra

  • Phuket, Thailand
View GitHub Profile
@mtinra
mtinra / page_jump_down.js
Created May 1, 2015 16:18
Scroll page to the position
// scroll down page away 500px from top
$(window).load(function() {
$("html, body").animate({ scrollTop: 500 }, 1000);
});
@mtinra
mtinra / Responsive-Accordion-(Background-Images).markdown
Created April 30, 2015 12:24
Responsive Accordion (Background Images)
@mtinra
mtinra / CSS-only-Star-Rating.markdown
Created April 30, 2015 12:11
CSS-only Star Rating

CSS-only Star Rating

The goal was to create a radio button-powered star rating widget that uses CSS only. I wanted each star preceding the selected one to appear selected as well.

A Pen by Marcus Burnette on CodePen.

License.

@mtinra
mtinra / Convert String to slug.js
Created April 28, 2015 07:18
Convert a string to slug
function convertToSlug(Text)
{
return Text
.toLowerCase()
.replace(/[^\w ]+/g,'')
.replace(/ +/g,'-')
;
}