This file contains hidden or 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
$.loadCss=function(css){$('head').append('<link rel="stylesheet" type="text/css" href="'+css+'">')}; |
This file contains hidden or 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 html5Preloader = (function () { | |
var XHR = typeof XMLHttpRequest === 'undefined' ? function () { // IE FIX | |
try { | |
return new ActiveXObject("Msxml2.XMLHTTP.6.0"); | |
} catch (err1) {} | |
try { | |
return new ActiveXObject("Msxml2.XMLHTTP.3.0"); | |
} catch (err2) {} |
This file contains hidden or 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
.svg_support { | |
content: url(../img/imagenSvg.svg); | |
} |
This file contains hidden or 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
<ul class="slider"> | |
<li><a href="#" target="_blank"><img src="slider/img-slide-01.jpg" alt=""></a></li> | |
<li><img src="slider/img-slide-02.jpg" alt=""></li> | |
<li><img src="slider/img-slide-03.jpg" alt=""></li> | |
<li><img src="slider/img-slide-04.jpg" alt=""></li> | |
</ul> |
This file contains hidden or 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
$('imageelement').fadeOut(function() { | |
$(this).load(function() { | |
$(this).fadeIn(); | |
}).attr('src', AnotherSource); | |
}); |
This file contains hidden or 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
// Añade efecto a los enlaces - fade | |
$('a').click(function (event) { | |
$(this).hide(0,function () { | |
$(this).fadeTo('slow',1); | |
}); | |
}); |
This file contains hidden or 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 if($_SERVER['SERVER_NAME']==="localhost"): ?> | |
<link rel="stylesheet/less" href="less/style.less" type="text/css" /> | |
<script type="text/javascript">less = { env: 'development' };</script> | |
<script src="http://lesscss.googlecode.com/files/less-1.3.0.min.js"></script> | |
<?php else: ?> | |
<link rel="stylesheet" type="text/css" href="stylesheets/style.css?v=1"> | |
<?php endif; ?> |
This file contains hidden or 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
/* | |
* | |
* FONTS | |
* by @dic7 (github: ivanmendoza) | |
* | |
*/ | |
#fonts{ | |
.base(@size: 1em){ | |
font:normal @size verdana, helvetica, arial, sans-serif; | |
} |
This file contains hidden or 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
<link rel="stylesheet/less" href="style.less?v=1" type="text/css" /> | |
<script type="text/javascript">less = { env: 'development' };</script> | |
<script src="http://lesscss.googlecode.com/files/less-1.3.0.min.js"></script> |