본문 바로가기
공부/프론트엔드

Today I Learned (TIL)

by yeaseul912 2018. 10. 29.
728x90

오늘 하루 일하면서 알게된거, 서핑하다가 알게된거, 공부하다가 알게된거 등등.. 웹프론트 관련하여 올리기로 한다.


gitHub에서 올리려 하였으나 코딩을 생각보다 안하므로 일단 블로그에 어떤내용인지 정리하는식으로 진행해보도록 한다.


1. SweetAlert [https://sweetalert.js.org/]


alert을 예쁘게 처리해준다.


2. Free progress bar javascript plugins for Web Degin [https://speckyboy.com/free-progress-bar-javascript-plugins/]

  - lineprogressbar : jquery로 하는 라인진행바

  - Mprogress.js : css사용하는건가. 간단해보인다.!

  - progressBar.js : 네모, 동그라미, 세모 모양 있다

  - goalProgress : 믱 이건뭘까 

  - uprogress

  - nanobar.js : vanila js 기반 가벼운 라인 바

  - progressStep

  - CProgress

  - jQuery Circle Progress

  - loading bar : 이쁘고 뭔가 많음

참고용~.~


3. JQuery  자동실행 함수


HTML이 준비된 시점에서의 자동실행 Function

 

$(document).ready(function(){});

 

$(function(){});

 

 

Page가 모두 완료된 시점에서의 자동실행 Fuction

 

$(window).load(function(){});

 

$("#sample").load(function(){});

 ※ smaple 이라는 id의 객체가 불러진 후 함수를 실행.


4. JQuery 노드 찾기 [http://crosstheline.tistory.com/41]


5. git add error

warning: LF will be replaced by CRLF in README.md.

The file will have its original line endings in your working directory.


원인 : 윈도우 컴퓨터를 사용해서

해결방법 : core.autocrlf 를 true 로 해주면 된다.  git config core.autocrlf true 

[https://stackoverflow.com/questions/5834014/lf-will-be-replaced-by-crlf-in-git-what-is-that-and-is-it-important]



반응형

댓글