Skip to content

Instantly share code, notes, and snippets.

View Anita-JO's full-sized avatar
:octocat:
Focusing

Anita Anita-JO

:octocat:
Focusing
View GitHub Profile
@Anita-JO
Anita-JO / index.html
Created October 31, 2017 19:29 — forked from anonymous/index.html
Scrollspy with animated scroll and focus
<body data-spy="scroll" data-target="#scroll-spy">
<!-- Navigation - Fixed Top -->
<nav class="navbar navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class="navbar-home" href="#home" role="button">
<svg class="lnr lnr-home"><use xlink:href="#lnr-home"></use></svg>
</a>
@Anita-JO
Anita-JO / demo_workers.js
Created October 28, 2017 20:33 — forked from lamprosg/demo_workers.js
HTML5 Web Workers example
var i=0;
function timedCount()
{
i=i+1;
postMessage(i); //posts a message back to the HTML page.
setTimeout("timedCount()",500);
}
timedCount();