Skip to main content

Posts

Showing posts with the label programming skill

learn angularjs at codeacademy

I learn angularjs and build some code from scratch. The first, it show up the skeleton of website structure. wwwroot: -CSS ++main.css                --> css how your website style -IMG                         --> image for your website ++someIMG -JS ++CONTROLLERs ++++maincontroller.js ---> main controller ++SHARED                --> include angularjs support library ++++angular-mocks.js ++++angular-route.min.js ++++angular.min.js ++app.js            --> call into action -INDEX.HTML---> the start point Start point include 6 steps from introduction: Awesome! You built an AngularJS app. How does it work? In  app.js , we created a new  module  named  myApp . A  module  contains the different components of an AngularJS app. Then, in  index.html ...

learn programming skill at codeacademy

I learn programming skill at code academy. I have 2 skills at the beginning basic java script and how to make a website with basic html, css and bootstrap framework, jquery adding. " JavaScript   is a programming language used to add interactivity to a web page.   jQuery   simplifies JavaScript syntax and makes it easier to build interactive web pages that work across multiple browsers. jQuery enables us to do three main things on a web page: Events.  Respond to user interactions. DOM Manipulation.  Modify HTML elements on the page. Effects.  Add animations. " In order to make interactive web pages with jQuery, it's useful to know a few things about  JavaScript . JavaScript is a programming language that jQuery is written in, and knowing JavaScript will be helpful for understanding and writing your code. Some define: Events User interactions with a web page are called  events . We can write a function that specifie...