Code Monkey home page Code Monkey logo

opentutorials_web1's Introduction

생활코딩 공부

  • 생활코딩 WEBn 강좌를 WEB1 - HTML & Internet부터 차례대로 수강하여 적용시킨 웹페이지입니다.
  • 코드는 생활코딩에서 제공하는 예제 코드와 동일합니다.
  • Markdown 활용하여 공부 내용을 날짜별로 정리합니다.
  • 웹페이지 방문하기 - 클릭

수정 내역

  • 2019.11.27
    • WEB1 - HTML & Internet 완강 후 적용
    • 간단한 초기 웹페이지
    • index.html과 3개의 부속 페이지로 구성
  • 2019.12.03
  • 2019.12.05
    • WEB2 - JavaScript 객체 활용까지 적용
    • 기존 상태에서 colors.js가 추가됨
    • 알게 된 점 - 아래와 같이 함수가 객체의 한 요소로 들어가 Links.setColor('white');의 형태로 호출될 수 있다는 것.
      var Links = {
        setColor:function(color){
          var alist = document.querySelectorAll('a');
          var i = 0;
          while(i < alist.length){
            alist[i].style.color = color;
            i = i + 1;
          }
        }
      } 
      
  • 2019.12.05
    • WEB2 - JavaScript 완강 후 적용
    • 기존의 js 파일에서 jQuery 문법을 적용시킴
      var Links = {
        setColor:function(color){
          $('a').css('color', color);
        }
      }
      

opentutorials_web1's People

Contributors

choisohyun avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.