Tag: javascript

  • Javascript effects: trigger animations & transitions on SVGs

    Triggering animations and transitions on SVG graphics using Javascript. Code & tutorials: http://learn-the-web.algonquindesign.ca/topics/javascript-effects/ Original source

  • JavaScript Tutorial For Beginners #15 – Logical Operators

    In this JavaScript tutorial for beginners, I’ll show you the two logical operators we can use with our control flow statements (such as if statements and loops). The two operators are the AND operator ( && ) and the OR operator ( || ) . The AND logical operator can be used when you need…

  • Sebastian McKenzie: JavaScript Transformation | JSConf US 2015

    I made the open source project Babel and will be presenting on how JavaScript transformation and ES6 can help improve developer workflow and how it can futureproof their code. Not only transpilation to ES6 but how Babel has support for Flow, JSX and React so it can be integrated into many workflows extremely nicely. There…

  • Beginner JavaScript Tutorial – 15 – if/else Statement

    Facebook – https://www.facebook.com/TheNewBoston-464114846956315/ GitHub – https://github.com/buckyroberts Google+ – https://plus.google.com/+BuckyRoberts LinkedIn – https://www.linkedin.com/in/buckyroberts reddit – https://www.reddit.com/r/thenewboston/ Support – https://www.patreon.com/thenewboston thenewboston – https://thenewboston.com/ Twitter – https://twitter.com/bucky_roberts Original source

  • Javascript ES7 – Async / Await in under 3 minutes

    A quick demonstration on how some of the asynchronous solutions work in Javascript. We talk about Callbacks, Promises, and then the ES7 Async / Await method. https://babeljs.io/ https://github.com/typicode/json-server http://rossboucher.com/await/#/ http://stackoverflow.com/questions/28708975/transpile-async-await-proposal-with-babel-js Tweets by AndrewDelPrete Original source

  • javaScript Method chaining tutorial ( function chaining)

    We will learn how to jquery style chain functions ( Methods) using pure javaScript. in Jquery we can do $(‘.class’).addClass(‘new’).removeClass(‘old’). we can achive similar chaining using pure javascript. Method chaining, also known as named parameter idiom, is a common syntax for invoking multiple method calls in object-oriented programming languages. Each method returns an object, allowing…

  • Scott Hanselman: “Virtual Machines, JavaScript and Assembler” Keynote – Velocity Santa Clara 2014

    Scott Hanselman’s keynote from the 2014 O’Reilly Velocity conference in Santa Clara, CA. How does the pervasiveness of JavaScript on the client change how we architect applications? We can create hundreds virtual machines in the cloud, but we are using the millions of visual machines that visit our sites every day? Suddenly we are scripting…

  • Custom Data Attributes HTML JavaScript CSS Tutorial

    Source: http://www.developphp.com/video/JavaScript/Custom-Data-Attributes-HTML-JavaScript-CSS-Tutorial Learn to use custom data attributes. Custom data attributes allow authors to create custom data to apply to their HTML elements when no other attributes make sense to use to store extra data. They help extend the information that html elements can communicate to a program or script. Custom data attributes can be…

  • Javascript Parallax Effect Explained

    PART 2 HERE We go through some raw ins and outs of doing the famed parallax effect. It seems to be a big deal lately. This is by NO means the only way to do this, but this is the one I like. I use webkit transform instead of margin-top because of performance. To make…

  • Google Maps Geocoding by Address with Javascript Tutorial

    You will learn how to use the Google Maps Javascript v3 API and its Geocoder class to transform a physical street address into geo-based info including coordinates using Google Map’s networked service. Toward the end I exhibit show to change map options using code. Visit the Zenterp Technology Training website for more videos: http://zenterp.co/training/videos Original…