Tag: software

  • Virtual Keyboard in JavaScript – HTML, CSS & JavaScript Tutorial (Project Video)

    Link to code: Google Material Icons: https://google.github.io/material-design-icons/#icon-font-for-the-web In this video we’ll be creating a virtual keyboard using pure HTML, CSS & JavaScript (no libraries required). This is done from scratch and is easy to integrate, responsive and touch-friendly. I think projects like this are super helpful for learning web development or specifically HTML, CSS, &…

  • Loading data into HTML Tables using AJAX – JavaScript Tutorial

    In most medium-to-large sized websites or applications, it’s ideal to separate your data from your HTML markup. One way to achieve this is by creating a structure in HTML and then loading the data separately from a dedicated data-file. AJAX is a method of loading data into a web page once it has finished loading…

  • JavaScript Tutorial – "unload" event | Detect when the browser window has closed

    By using the “unload” event in JavaScript you are able to detect when the window has closed. In the case of an iframe, it is possible to detect when the src attribute has been removed or changed. In this video we take a look at an example of the “unload” event in the case of…

  • Accessing an iframe document (contentWindow) – JavaScript Tutorial

    In this video we take a look at the contentWindow and contentDocument properties of an embedded iframe – it allows access to the underlying “window” and “document” objects of the HTML page. Support me on Patreon: https://www.patreon.com/dcode – with enough funding I plan to develop a website of some sort with a new developer experience!…

  • Create a Navigation Bar with Icons – HTML, CSS & JavaScript Tutorial | Web Design

    In this video we’ll be creating a stylish navigation bar with icons, using plain HTML, CSS and JavaScript. The icon library used will be Google Material Icons, which you can read the documentation for here: https://material.io/tools/icons/ To include Google Material Icons on your web page, add this to your head: https://fonts.googleapis.com/icon?family=Material+Icons Support me on Patreon:…

  • Maya 2014 3D Modeling – Polygon and subdivision mesh modeling

    https://i.ytimg.com/vi/Ky1h1tOv0lo/hqdefault.jpg Find out more here: http://store.cadpoint.co.uk/index.php?app=gbu0&ns=catshow&ref=Autodesk_Maya Create and edit meshes using an intuitive toolset. source Link to this post!

  • Getting started with Blender 2.8 2d!

    Getting started with Blender 2.8 2d!

    https://i.ytimg.com/vi/2Uso2CpOPHA/hqdefault.jpg In this video, I will show you some basic tips and steps to get started using blender 2.8 2d right away. If you would like to stay updated on future videos, be sure to subscribe! source Link to this post!

  • Photoshop CS6: How to Make a Wood Burning Portrait

    Photoshop CS6: How to Make a Wood Burning Portrait

    https://i.ytimg.com/vi/pBEiBbs8LRI/hqdefault.jpg Photoshop CS6 Tutorial: How to Make a Wood Burning Portrait. Subscribe to Photoshop Picture Editor!: https://www.youtube.com/channel/UCZ_t7nM_T_YyHllis0G9G6w?sub_confirmation=1 —————————————————————————————————- -Fanpage: https://www.facebook.com/AdobePhotoshop/ -Google+: https://plus.google.com/+PhotoshopTutorialPhotoEffects -Twitter: https://twitter.com/APhotoshopTUT ——————————————————————————————— Link Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=UADTHGDDM2FF8&lc=VN&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted View Original Source Here Link to this post!

  • JavaScript Application Architecture with Backbone.js

    Several JavaScript libraries which implement the Model-View-Controller pattern recently gained attention. Only few of these libraries offer a superstructure which manages the individual models, views and controllers. It’s easy to set up a simple MVC example, but an application with multiple complex interfaces will need a sophisticated overall architecture. The talk will start with the…