RESPONSIVE MOVING BOX CAROUSEL DEMO
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 ctx = null, usingWebAudio = true; | |
try { | |
if (typeof AudioContext !== 'undefined') { | |
ctx = new AudioContext(); | |
} else if (typeof webkitAudioContext !== 'undefined') { | |
ctx = new webkitAudioContext(); | |
} else { | |
usingWebAudio = false; | |
} |
This file has been truncated, but you can view the full file.
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
[21:56:03] Starting 'clean-bundle'... | |
[21:56:03] Finished 'clean-bundle' after 3.42 ms | |
[21:56:03] Starting 'webpack'... | |
[21:56:13] [nodemon] restarting due to changes... | |
[21:56:13] [nodemon] restarting due to changes... | |
[21:56:13] [nodemon] restarting due to changes... | |
[21:56:13] [webpack] Hash: 0ed852c3f17111751fbb | |
Version: webpack 1.15.0 | |
Time: 9547ms | |
Asset Size Chunks Chunk Names |
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
<button class="btn1">1</button> | |
<button class="btn2">2</button> |
A contact form built with Bootstrap 3. Field validation with Bootstrap Validator.
A Pen by zhishaofei on CodePen.
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
<div class="full-width"> | |
<div class='cf'> | |
<div class="Switch card"> | |
<div class="Toggle"></div> | |
<span class="on"><i class="fa fa-th"></i></span> | |
<span class="off"><i class="fa fa-th-list"></i></span> | |
</div> | |
</div> | |
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
<div class="full-width"> | |
<div class='cf'> | |
<div class="Switch card"> | |
<div class="Toggle"></div> | |
<span class="on"><i class="fa fa-th"></i></span> | |
<span class="off"><i class="fa fa-th-list"></i></span> | |
</div> | |
</div> | |
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
<header><h1>Responsive Slider</h1></header> | |
<section> | |
<div class="slider"> | |
<div class="slide-viewer"> | |
<div class="slide-group"> | |
<div class="slide slide-1"> | |
<img src="http://javascriptbook.com/code/c11/img/slide-1.jpg" alt="No two are the same" /> | |
</div> | |
<div class="slide slide-2"> |
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
function throttle( fn, time ) { | |
var t = 0; | |
return function() { | |
var args = arguments, ctx = this; | |
clearTimeout(t); | |
t = setTimeout( function() { | |
fn.apply( ctx, args ); | |
}, time ); | |
}; |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
NewerOlder