1. img 태그보단 css의 background-image가 더 빨리 불러오는 것 같은 기분탓이 든다.


2. 다른이름으로 저장을 해가면서 하면 캐시가 안먹기때문에 다른 컴퓨터들에도 다 초기화가 되서 보여진다.


3. favicon은 realfavicongenerator.net 에서 하면 좋다.


4. id값은 개발자를 위해 남겨놔야한다 ^_^ 클래스는 거의 디자이너들의 몫이기에...  id로 css속성 주는건 삼가야할것


5. 라벨 안의 인디케이터는 span으로 처리한다



http://kenwheeler.github.io/slick/#getting-started

display: flex속성을 이용해서 간편하게 버튼 정렬하기

See the Pen display-flex by gogiso (@gogiso) on CodePen.

'pusblishing > CSS' 카테고리의 다른 글

cubic-bezier  (0) 2019.03.04
크로스브라우징에 대해서  (0) 2019.01.29
[CSS] 속성 축약형으로 작성하기   (0) 2018.07.11

신분증 사진

신분증 들고있는 본인사진

/*css*/.plus_area{width:100px; height:87px; background-color:#49d094; display:block; border-radius:15px; overflow:hidden; box-shadow: 0px 5px 20px rgba(0,69,191,0.2);}.plus_area p{width:30px; height:30px; background:#8adab2; color:white; font-size:28px; border-radius:50px; text-align:center; line-height:23px; margin:0 auto; margin-top:29px; font-weight:100;}.plus_area>img{width:100%; height:100%; float:left;}#imgInp1,#imgInp2{display:none;}.pic_tt{font-size:10px; color:#5a5a5a; text-align:center; width:100px;}.inline{ float: left; margin-right: 2%;}/*제이쿼리*/ function readURL1(input) { if (input.files && input.files[0]) { if( !(/image/i).test(input.files[0].type ) ){ alert('이미지파일을 선택해주세요.'); return false; } var reader = new FileReader(); reader.onload = function (e) { $('#blah1').attr({ src:e.target.result, style:'display:block' }); } reader.readAsDataURL(input.files[0]); } } function readURL2(input) { if (input.files && input.files[0]) { if( !(/image/i).test(input.files[0].type ) ){ alert('이미지파일을 선택해주세요.'); return false; } var reader = new FileReader(); reader.onload = function (e) { $('#blah2').attr({ src:e.target.result, style:'display:block' }); } reader.readAsDataURL(input.files[0]); } } $("#imgInp1").change(function(){ readURL1(this); }); $("#imgInp2").change(function(){ readURL2(this); });

내가 약한 부분 : 로고 그라데이션 넣는 기업형 ci 가 감이 안잡힌다 ㅇㅅㅇ,,

강점이자 특징 : 아기자기한 디자인

css로 스타일을 지정할 때는 속성을 쓰고 속성값을 쓴다 (너무 당연한 소리 ㅎㅎ)

하지만 가끔 애니메이션이나 백그라운드같이 한 속성에 여러가지 모드를 설정해야할 때가 있당

예를 들면 animation-name, animation-fill-mode, animation-delay등 애니메이션과 관련된 여러가지 코드을 길게 작성해야하는 경우,

animation: 이름 작동시간 반복횟수 진행방법 딜레이

이런 식으로 한줄로 축약해서 작성할 수 있음.
마찬가지로 백그라운드도 똑같이 축약형으로 작성할 수 있다 ㅎㅎ

갑자기 지금 생각나서 폰으로 작성하는건데
자세한건 다음에 컴퓨터로 작성하겠습니다,,, 불친절해 죄송해요^_^,,,

'pusblishing > CSS' 카테고리의 다른 글

cubic-bezier  (0) 2019.03.04
크로스브라우징에 대해서  (0) 2019.01.29
display: flex속성을 이용해서 간편하게 버튼 정렬하기  (0) 2018.12.19

See the Pen QxeNop by gogiso (@gogiso) on CodePen.


'pusblishing > JQuery' 카테고리의 다른 글

공지사항 넘기는 효과 함수 단축공부  (0) 2019.03.05

+ Recent posts