210917
🎊학습한 내용
JavaScript Library
GreenSock
// https://greensock.com/
// 애니메이션 효과
gsap.to('.masthead-heading', 10, {
left:50,
backgroundColor: 'blue',
borderColor: 'pink',
borderRadius: '50%'
})
// from to 가능
gsap.fromTo('.masthead .btn', 5, {
backgroundColor: 'blue'
},
{
backgroundColor: 'red'
})
bootstrap
<!-- https://getbootstrap.com/
bootstrap
반응형은 -sm -md -lg -xl 붙이기
grid 는 기본 columns 12개에서 나눈다고 생각하면 될 듯
card, Carousel 등등 많음
bootstrap으로 이루어진 사이트를 모르고 볼 때랑 알고 보니 어떤 구성으로 이루어지는 이해된 듯
-->
<div class="container">
</div>
<div class="container-fluid">
</div>
이하 내용은 github 업로드
Author And Source
이 문제에 관하여(210917), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@cptdye77/210917저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)