Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Master of DevTools

Master of DevTools

My first talk at hack@CST hackathon about Chrome Developer Tools and web optimization

Levan Velijanashvili

December 20, 2013
Tweet

More Decks by Levan Velijanashvili

Other Decks in Technology

Transcript

  1. Topics DOM and Styles Editing Sources Debugging JavaScript Improving Network

    Performance Improving Performance Memory Profiling
  2. JS

  3. CSS .sidebar-levels h3 a { transition: border-color 0.2s ease-in-out; border:

    2px solid #bebebe; border-radius: 50%; color: #777777; display: block; margin-top: 7px; text-align: center; width: 30px; } @media screen and (min-width: 1060px) { .sidebar-levels h3 a { margin-right: 30px; } }
  4. Raw JavaScript Minified JavaScript function hello(name) { if (name.length >

    16) { alert("No!"); } else { alert("Hi " + name + "!"); } } function hello(n){alert(n.length>16?"No!":"Hi “+n+"!")}