Skip to content

Instantly share code, notes, and snippets.

@rknightuk
Created August 4, 2013 15:19
Show Gist options
  • Select an option

  • Save rknightuk/6150658 to your computer and use it in GitHub Desktop.

Select an option

Save rknightuk/6150658 to your computer and use it in GitHub Desktop.
Focus Mode now not used on robblewis.me
<a href="#" class="focus">focus</a></p>
<script type="text/javascript">
$(".focus").click(function (e) {
e.preventDefault();
if($(this).text() == 'focus')
{
$("header").slideToggle("slow");
$("nav").slideToggle("slow");
// $(".meta").slideToggle("slow");
$("footer").slideToggle("slow");
$("img").animate({"opacity":"0.3"}, 550);
$("article").animate({"margin-top":"20px"}), 550;
$(this).text('unfocus');
}
else
{
$("header").slideToggle("slow");
$("nav").slideToggle("slow");
// $(".meta").slideToggle("slow");
$("footer").slideToggle("slow");
$("img").animate({"opacity":"1"}, 550);
$("article").animate({"margin-top":"0"}), 550;
$(this).text('focus');
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment