Skip to content

Instantly share code, notes, and snippets.

@mihailik
Created October 12, 2015 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mihailik/9ab1655d6fd9bbfa9d59 to your computer and use it in GitHub Desktop.
Save mihailik/9ab1655d6fd9bbfa9d59 to your computer and use it in GitHub Desktop.
<html>
<title>Demo Knockout</title>
<script src="http://knockoutjs.com/downloads/knockout-3.3.0.debug.js"></script>
<h2 data-bind="style: {opacity: Math.random() > 0.5 ? 0.5 : 0.2 }" style="font-size: 120%;">
OK something here
</h2>
<script>
ko.applyBindings({});
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment