This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$tabletMaxWidth: 1024px - 40px; //1020px - 40px; //980px | |
$mobileMaxWidth: 640px - 40px; //600px | |
@mixin respond-to($media) { | |
@if $media == mobile { | |
@media screen and (max-width: $mobileMaxWidth) { | |
@content; | |
} | |
} | |
@else if $media == tablet { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// shrink-border.0.0.1.js | |
// Author Kenji Wong | |
// Lastest Modification 25/4/2013 | |
(function($) { | |
$.fn.shrinkBorder = function(options) { | |
var defaultOptions = { | |
border : "10px solid #CCC", | |
time : 300, | |
easing : "swing", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$file = "index.html"; | |
if(!file_exists($file)) die("File Not Found"); | |
$bodyhtml = ""; | |
$fp = fopen($file,"r"); | |
while(!feof($fp)){ | |
$bodyhtml.=fgets($fp,4096); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SpriteSheetManager.js | |
// Author Kenji Wong | |
// Lastest Modification 7/11/2012 | |
var SpriteSheetManager; | |
var SpriteSheetElement; | |
(function($){ | |
// SpriteSheetManager Start | |
SpriteSheetManager = function(options) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var PluginName; | |
(function($){ | |
PluginName = function(options) { | |
this.defaults = { | |
}; | |
this.options = $.extend(this.defaults, options); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SectionManager.js | |
// Author Kenji Wong | |
// Lastest Modification 21/02/2013 | |
define(["backbone"], function(){ | |
// SectionBase START | |
var SectionBase = Backbone.Model.extend({ | |
defaults : { | |
el : "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// CommonFunction.js | |
// Author Kenji Wong | |
// Lastest Modification 16/11/2012 | |
if(!window.console) window.console = { log: function(){ return; } }; | |
var classExtend = function(subClass, superClass) { | |
var F = function() {}; | |
F.prototype = superClass.prototype; | |
subClass.prototype = new F(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fancyboxAjax = function(){ | |
$.fancybox({ | |
'modal' : true, | |
'padding' : 0, | |
'margin' : 0, | |
'width' : 972, | |
'height' : 646, | |
'autoScale' : true, | |
'centerOnScroll' : true, | |
'overlayOpacity' : 0.9, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var alert = function (pText){ | |
jQuery.fancybox({ | |
'padding' : 0, | |
'margin' : 0, | |
'modal' : true, | |
'centerOnScroll' : true, | |
'width' : 470, | |
'height' : 190, | |
'padding' : 0, | |
'overlayOpacity' : 0.9, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
$.fn.pluginName = function(options) { | |
var defaultOptions = { | |
option1: 'ahrengot', | |
option2: true, | |
option3: false | |
} | |
var options = $.extend(defaultOptions, options); | |
NewerOlder