0712 금 uiux 71일차


텍스트 타이핑 애니메이션 1
 ( https://codepen.io/YoungHeom/pen/mdZJJNP )

텍스트 타이핑 애니메이션 2 ( https://codepen.io/YoungHeom/pen/RwzPWzj )

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux_0712</title>
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
</head>
<style>
    html, body {
        height: 100%;
        overflow: hidden;
    }
    .container {
        height: 100%; width: 100%;
        overflow-y: auto;
        scroll-snap-type: y mandatory;

    }
    .section {
        height: 100vh; width: 100%;
        scroll-snap-align: start;
    }
    .section:nth-child(2n) {
        background-color: #ef9f9f;
    }
    .section:nth-child(2n+1) {
        background-color: #9fafaf;
    }
</style>
<body>
    <div class="container">
        <div class="section">s1</div>
        <div class="section">s2</div>
        <div class="section">s3</div>
        <div class="section">s4</div>
    </div>
</body>
</html>

제이쿼리를 잘 넣자^^
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux_0712</title>
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
</head>
<style>
    html, body {
        margin: 0;
        /* height: 100%; */
    }
    .container {
        width: 100%;
        height: 480vh;
        position: relative;

    }
    .container2 {
        position: relative;
        z-index: 2;
        height: 200vh;
        background-color: #dff;
    }
    .section {
        width: 100%;
        height: 120vh;
        position: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .section:nth-child(1) {
        background-image: url("https://picsum.photos/id/103/1200/600");
    }
    .section:nth-child(2) {
        background-image: url("https://picsum.photos/id/106/1200/600");
    }
    .section:nth-child(3) {
        background-image: url("https://picsum.photos/id/108/1200/600");
    }
    .section:nth-child(4) {
        background-image: url("https://picsum.photos/id/110/1200/600");
    }
</style>
<body>
    <div class="container">
        <div class="section">s1</div>
        <div class="section">s2</div>
        <div class="section">s3</div>
        <div class="section">s4</div>
    </div>
    <div class="container2">

    </div>
</body>
<script>
    $(function(){
        let li = [];
        $(".section").each(function(i){
            $(this).css("top",(i*$(this).height())+"px");
            li.push($(this).offset().top); // 내가 가지고 있는 탑값
        });
        $(window).scroll(function(){
            let wsc = $(this).scrollTop();
            $(".section").each(function(i){
                let sc = li[i]-wsc;
                if(sc<0){sc=0}
                $(this).css("top", sc + "px");
            });
        });
    }); // each=반복
</script>
</html>


ㄴ또안돼!

 

'UIUX(03.28~10.02)' 카테고리의 다른 글

0716 화 uiux 73일차  (2) 2024.07.16
0715 월 uiux 72일차  (0) 2024.07.15
0711 목 uiux 70일차  (0) 2024.07.11
0710 수 uiux 69일차  (0) 2024.07.10
0709 화 uiux 68일차  (0) 2024.07.09

0711 목 uiux 70일차

 

circleProgress ( https://codepen.io/YoungHeom/pen/OJePwXx )

버튼 호버 효과, 라인색 변경 ( https://codepen.io/YoungHeom/pen/LYKEBeZ )

탭메뉴와 스와이퍼 조합 1부 ( https://codepen.io/YoungHeom/pen/OJePwKo )

탭메뉴와 스와이퍼 조합 2부 ( https://codepen.io/YoungHeom/pen/poXvZMM )

탭메뉴와 스와이퍼 조합 3부 ( https://codepen.io/YoungHeom/pen/JjQoabJ )

 

검색창 만들기 ( https://codepen.io/YoungHeom/pen/ExBxdNO )

테두리 흐려보이게 하깅( https://codepen.io/YoungHeom/pen/poXvZdG )

phone_web 푸터 만들기 ( https://codepen.io/YoungHeom/pen/VwJYGWx )

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux_0710</title>
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
</head>
<style>
    .container {
        width: 100%;
        height: 100%;
    }
    .section {
        width: 100%;
        height: 100vh;
        margin: 0 10px;
    }
    .section:nth-child(2n){
        background-color: #dfdfdf;
    }
    .section:nth-child(2n+1){
        background-color: #dfefef;
    }
    .menu {
        position: fixed;
        top: 5%;
        right: 10%;
        gap: 5%;
        display: flex;
        font-size: 20px;
        text-align: center;
        align-content: center;
       
    }
    .menu > .s {
        width: 40px;
        height: 50px;
        cursor: pointer;
        background-color: #8dd;
        line-height: 50px;
        border-radius: 6px;
    }
</style>
<body>
   
    <div class="container">
        <div class="section">s1</div>
        <div class="section">s2</div>
        <div class="section">s3</div>
        <div class="section">s4</div>
    </div>
    <div class="menu">
        <div class="s">1</div>
        <div class="s">2</div>
        <div class="s">3</div>
        <div class="s">4</div>
    </div>

    <script>
        $(function(){
            $(".s").click(
                function(){
                    // contsole.log($(this).index);
                    let i = $(this).index();
                    let st = $(".section").eq(i).offset().top;
                    $("html").stop().animate({scrollTop:st}, 1000);
                }
            );
        });
    </script>
</body>
</html>

 

    <script>
        $(function(){
            $(".s").click(
                function(){
                    // contsole.log($(this).index);
                    let i = $(this).index();
                    let st = $(".section").eq(i).offset().top;
                    $("html").stop().animate({scrollTop:st}, 1000);
                }
            );
            $(window).scroll(
                function(){
                    console.log($(window).scrollTop);
                }
            );
        });
    </script>

 

 

<script>
        $(function(){
            $(".menu > .s").click(
                function(){
                    // contsole.log($(this).index);
                    let i = $(this).index();
                    let st = $(".section").eq(i).offset().top;
                    $("html").stop().animate({scrollTop:st}, 1000);
                    $(".section").eq(i).fadeOut(1000).fadeIn(1000);
                }
            );
            // $(window).scroll(
            //     function(){
            //         console.log($(window).scrollTop);
            //     }
            // );
        });
    </script>

.

 

'UIUX(03.28~10.02)' 카테고리의 다른 글

0715 월 uiux 72일차  (0) 2024.07.15
0712 금 uiux 71일차  (0) 2024.07.12
0710 수 uiux 69일차  (0) 2024.07.10
0709 화 uiux 68일차  (0) 2024.07.09
0708 월 uiux 67일차  (0) 2024.07.08

0710 수 uiux 69일차

 

https://picsum.photos/id/103/200/300   

ㄴ 이 사진 좀 괜찮음

 

textarea 라는 태그가 있단걸 이제 앎. ( https://codepen.io/YoungHeom/pen/vYqEKyx ) gpt가 알려줌

 

탭메뉴에 따라 화면이 전체적으로 바뀌는 효과

작업 1, 파트 스위치 ( https://codepen.io/YoungHeom/pen/ExBaygx )

작업 2, 파트 스위치 ( https://codepen.io/YoungHeom/pen/WNqbxEa )

작업 3, 배경이미지 배치, 프리로딩 (https://codepen.io/YoungHeom/pen/GRbgqMO  )

작업 4, 배경이미지 흐르도록( https://codepen.io/YoungHeom/pen/yLdyJqd )

 

 


<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux_0710</title>
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
</head>
<style>
    .con {
        width: 200px;
        height: 300px;
        border: 1px solid #000;
    }
    .imgbox {
        display: flex;
        width: 800px;
    }
    .a {
        width: 40px;
        height: 50px;
        background-color: indianred;
        cursor: pointer;
    }
    .b {
        width: 40px;
        height: 50px;
        margin-top: 20px;
        background-color: PowderBlue;
        cursor: pointer;
    }
</style>
<body>
    https://picsum.photos/id/103/200/300-->
    <div class="con">
        <div class="imgbox">
            <div class="img">
                <img src="https://picsum.photos/id/100/200/300" alt="">
            </div>
            <div class="img">
                <img src=" https://picsum.photos/id/103/200/300 " alt="">
            </div>
            <div class="img">
                <img src="https://picsum.photos/id/104/200/300" alt="">
            </div>
        </div>
    </div>
    <div class="a"></div>
    <div class="b"></div>

    <script>
        let i = 1;
        $(function () {
            $(".a").click(function() {
                console.log(-$(".img").width());
                    $(".imgbox").animate({ "margin-left": -$(".img").width() * i }, 300);
                        i++;
            });
                $(".b").click(function(){
                    i--;
                    $(".imgbox").animate(
                        { "margin-left": -$(".img").width() * (i - 1) },
                        300
                        );
                });

        });
    </script>
    <script>
        let i = 0; //append=추가해줘.
        $(function(){
            $(".a").click({
                function(){
                    $(".imgbox").animate({ marginLeft:-$(.img)width() }, 300)
                }
            });
        });
    </script>
</body>
</html>

(독타입선언은 생략함)

 


(.

 

<div class="part part-1 active" onclick="Part__showPart(1);">파트 1</div>

  ㄴ onclick : 얘(해당 태그)를 클릭했을 때

 

탭메뉴에 따라 화면이 전체적으로 바뀌는 효과

작업 1, 파트 스위치 ( https://codepen.io/YoungHeom/pen/ExBaygx )

작업 2, 파트 스위치 ( https://codepen.io/YoungHeom/pen/WNqbxEa )

작업 3, 배경이미지 배치, 프리로딩 (https://codepen.io/YoungHeom/pen/GRbgqMO  )

작업 4, 배경이미지 흐르도록( https://codepen.io/YoungHeom/pen/yLdyJqd )

 

 

/* 이미지 프리로드 함수 */
function preloading (imageArray) {
  let n = imageArray.length;
  for (let i = 0; i < n; i++) {
    let img = new Image(); img.src = imageArray[i];
  }
}

/* 이미지 프리로드 */
preloading([
  'https://picsum.photos/id/103/1000/1500',
    'https://picsum.photos/id/103/1000/1500',
  'https://picsum.photos/id/435/1000/1500',
    'https://picsum.photos/1000/1500'
]);
  /* ㄴ html 에 넣은 이미지을 적으면 됨*/

]);

 

'UIUX(03.28~10.02)' 카테고리의 다른 글

0712 금 uiux 71일차  (0) 2024.07.12
0711 목 uiux 70일차  (0) 2024.07.11
0709 화 uiux 68일차  (0) 2024.07.09
0708 월 uiux 67일차  (0) 2024.07.08
0705 금 uiux 66일차  (0) 2024.07.05

0709 화 uiux 68일차

 

텍스트량에 따라 유연하게 길어지는 디자인 ( https://codepen.io/YoungHeom/pen/jOjOeop )

 

능력단위평가
시각디자인 리서치 조사

   
1. 시각디자인의 주요 트렌드 3가지를 조사하세요.
2. 각 트렌드에 대해 다음을 포함한 발표 자료를 작성하세요.
  - 트렌드의 정의 및 특징 설명
  - 대표적인 사례 분석 (이미지 포함)
  - 트렌드의 장점과 단점
3. 조사한 내용을 기반으로 10분 내외의 발표 자료 (슬라이드 5장 내외)를 만드세요.

제출은 pdf로 해주세요.

 

시각디자인 리서치 조사 과제 - 자료 찾기

( https://www.webdesignerdepot.com/3-essential-design-trends-july-2024/ )

ㄴ 2024년 7월의 3가지 필수 디자인 트렌드(영어임)

( https://www.webdesignerdepot.com/essential-design-trends-may-2024/ )

ㄴ 2024년 5월의 3가지 필수 디자인 트렌드(영어임)

 

 

 

( https://www.webdesignerdepot.com/ )

ㄴ 영어라서 보기 어렵지만 시각디자인 관련 정보들이 많이 올라와있음

( https://www.creativebloq.com/ )

ㄴ 영어222

( https://www.awwwards.com/ )

ㄴ 영어333 포트폴리오 사이트 같음

 

( https://www.designdb.com/?menuno=668#gsc.tab=0 )

ㄴ 디자인db. 디자인 트렌드 같은 정보 확인 가능. 한국디자인진흥원에서 만듦. 채용정보도 확인 가능

 

 

 

( https://www.awwwards.com/sites/popin )

 

 

gpt씨가 알려줌

'UIUX(03.28~10.02)' 카테고리의 다른 글

0711 목 uiux 70일차  (0) 2024.07.11
0710 수 uiux 69일차  (0) 2024.07.10
0708 월 uiux 67일차  (0) 2024.07.08
0705 금 uiux 66일차  (0) 2024.07.05
0704 목 uiux 65일차  (0) 2024.07.04

0708 월 uiux 67일차

 

 

프로그래스바 ( https://codepen.io/YoungHeom/pen/yLdLMNO )

ㄴ 포폴엔 이런거 쓰지말기(어쩐지 관심이 별로 안가더라)

 

 

연습!

 

스크롤 시 게이지 만들어보기 ( https://codepen.io/YoungHeom/pen/MWMWmWr )

flex 내부 아이템 그룹 가운데정렬 배치하기 ( https://codepen.io/YoungHeom/pen/QWXWvwg )

grid 내부 아이템 그룹 가운데정렬 배치하기 ( https://codepen.io/YoungHeom/pen/wvLvgOZ )

'UIUX(03.28~10.02)' 카테고리의 다른 글

0710 수 uiux 69일차  (0) 2024.07.10
0709 화 uiux 68일차  (0) 2024.07.09
0705 금 uiux 66일차  (0) 2024.07.05
0704 목 uiux 65일차  (0) 2024.07.04
0703 수 uiux 64일차  (0) 2024.07.03

0705 금 uiux 66일차

 

텍스트 외곽선 ( https://codepen.io/YoungHeom/pen/xxoKXeZ )

텍스트 외곽선 움직임 효과 ( https://codepen.io/YoungHeom/pen/WNqeXbL )

회전 애니메이션 ( https://codepen.io/YoungHeom/pen/GRbKOqd )

 

'UIUX(03.28~10.02)' 카테고리의 다른 글

0709 화 uiux 68일차  (0) 2024.07.09
0708 월 uiux 67일차  (0) 2024.07.08
0704 목 uiux 65일차  (0) 2024.07.04
0703 수 uiux 64일차  (0) 2024.07.03
0702 화 uiux 63일차  (0) 2024.07.02

0704 목 uiux 65일차

 

 

 

스크롤바 overlay ( https://codepen.io/YoungHeom/pen/PorYqmK )

모바일처럼 레이아웃 https://codepen.io/YoungHeom/pen/NWZKqjY )

글자 크기와 밑줄 너비 맞추기 ( https://codepen.io/YoungHeom/pen/poXzJPx )

다각형 호버 ( https://codepen.io/YoungHeom/pen/qBzWdMZ )

 

'UIUX(03.28~10.02)' 카테고리의 다른 글

0708 월 uiux 67일차  (0) 2024.07.08
0705 금 uiux 66일차  (0) 2024.07.05
0703 수 uiux 64일차  (0) 2024.07.03
0702 화 uiux 63일차  (0) 2024.07.02
0701 월 uiux 62일차  (1) 2024.07.01

0703 수 uiux 64일차

 

 

 

커서 효과 1부 ( https://codepen.io/YoungHeom/pen/RwmXJQg )

커서 효과 2부( https://codepen.io/YoungHeom/pen/KKLOeoJ )

커서 효과 3부 ( https://codepen.io/YoungHeom/pen/ZENgRod )

커서 효과 4부 ( https://codepen.io/YoungHeom/pen/MWdNXXM )

커서 효과 5부 ( https://codepen.io/YoungHeom/pen/vYworzJ )

커서 효과 6부 ( https://codepen.io/YoungHeom/pen/BaeXVMP )

커서 효과 7부 ( https://codepen.io/YoungHeom/pen/BaeXVgq )

커서 효과 8부 ( https://codepen.io/YoungHeom/pen/bGyXjGz )

 

 

사이즈 조절이 되는 사이드 메뉴바 ( https://codepen.io/YoungHeom/pen/abrejQE )

'UIUX(03.28~10.02)' 카테고리의 다른 글

0705 금 uiux 66일차  (0) 2024.07.05
0704 목 uiux 65일차  (0) 2024.07.04
0702 화 uiux 63일차  (0) 2024.07.02
0701 월 uiux 62일차  (1) 2024.07.01
0628 금 uiux 61일차  (0) 2024.06.28

0702 화 uiux 63일차

 

:root 

문서(페이지) 전역을 설정(?)할 때..?

 

tilt js ( https://codepen.io/YoungHeom/pen/NWVQNJo )

ㄴ 마우스 (don't 클릭)드래그하면 움직이는 이미지

maquee ( https://codepen.io/YoungHeom/pen/zYQgBOK )

다크모드 ( https://codepen.io/YoungHeom/pen/vYwoKOj

스크롤트리거로 탑바 색상 자동 변환 ( https://codepen.io/YoungHeom/pen/zYQgBzw )

mix-blend-bode로 탑바 색상 자동 변환 ( https://codepen.io/YoungHeom/pen/VwOojQG )★

'UIUX(03.28~10.02)' 카테고리의 다른 글

0704 목 uiux 65일차  (0) 2024.07.04
0703 수 uiux 64일차  (0) 2024.07.03
0701 월 uiux 62일차  (1) 2024.07.01
0628 금 uiux 61일차  (0) 2024.06.28
0627 목 uiux 60일차  (0) 2024.06.27

0701 월 uiux 62일차

 

멀티 숫자 카운터, 제이쿼리 each ( https://codepen.io/YoungHeom/pen/GRabPvZ )

 

 

드래그(글자 마우스 선택) 안 되게 하는 방법!

ㄴuser-select: none;

줄바꿈 안되는 건 white-space: nowrap;

 

 

$('.box-1__minus').click(function(){
    const num = parseInt($('.box__num').text)
    const newNum = num - 1 >= 0 ? num -1 : 0;
    console.log(num);
});

 

const newNum = num - 1 >= 0 ? num -1 : 0;

' num - 1 >= 0'  조건식

조건식이 참이면 - 1, 거짓이면 0

 

parseInt: 문자 0이 오면 숫자 0으로 변환해줌

$('.box-1__minus').click(function() {
    const num = parseInt($('.box-1__num').text());
    const newNum = num - 1 >= 0 ? num - 1 : 0;
    $('.box-1__num').text(newNum);
});

$('.box-1__plus').click(function() {
    const maxNum = 5;
    const num = parseInt($('.box-1__num').text());
    const newNum = num + 1 <= maxNum ? num + 1 : maxNum;
    $('.box-1__num').text(newNum);
});

 

 

 


 

display: none;_visibility: hidden;_opacity: 0; 차이 ( https://codepen.io/YoungHeom/pen/bGyPzEM )

ㄴ 갑자기 궁금해서 따로 정리함

 

요소를 숨기는 css 속성들 (

'display: none;', ' visibility: hidden;', ' opacity: 0;' ) 부모 태그에 bgc 적용한 후 차이점 알아보기

 

부모, 자식 태그에 높이가 없고 자식 태그에 텍스트만 입력되어 있을 때

 

- display: none; 

적용 시 배경(부모 태그)이 아예 화면에서 사라진다.(부모 태그에 높이가 없을 경우) 박스 실종.
그러나 부모 태그에 높이가 적용된 경우엔 자식 태그에 display: none;을 줘도 배경이 사라지지 않는다.

 

- visibility: hidden;

  공간은 차지하면서 해당 속성을 적용한 요소만 사라진다.( opacity: 0;과 동일 ) 빈 박스.

  커서를 대도(hover) 커서 모양이 바뀌지 않는다.

 

- opacity: 0;

  공간은 차지하면서 해당 속성을 적용한 요소만 사라진다. ( visibility: hidden;과 동일 빈 박스.
  커서를 대면 커서 모양이 cursor: text;으로 바뀐다.

 

페이지 우측 하단 홈엔드 버튼 만들기( https://codepen.io/YoungHeom/pen/bGyPOXL )

'UIUX(03.28~10.02)' 카테고리의 다른 글

0703 수 uiux 64일차  (0) 2024.07.03
0702 화 uiux 63일차  (0) 2024.07.02
0628 금 uiux 61일차  (0) 2024.06.28
0627 목 uiux 60일차  (0) 2024.06.27
0626 수 uiux 59일차  (0) 2024.06.26

0628 금 uiux 61일차

 

 

 


웹(혜지쌤)

 

scroll-snap-type ( https://codepen.io/YoungHeom/pen/BaeEgQo )

글자 회전 애니메이션 ( https://codepen.io/YoungHeom/pen/RwmOzKX )

반응형 스와이퍼 ( https://codepen.io/YoungHeom/pen/pomBXww )

현재 활성화된 슬라이드 내용 별도 공간에 표시 1부 ( https://codepen.io/YoungHeom/pen/eYaowjK )

현재 활성화된 슬라이드 내용 별도 공간에 표시 2부 ( https://codepen.io/YoungHeom/pen/ZENZdqo )

* = 모두 선택

 

 

0802 14:00 프리미어 에펙 연동 특강 (신청)

0815 14:00 쇼츠/썸네일 제작 실습 (고민중)

0822 14:00 이모티콘(신청)

0816 치과 이슈

0828 14:00 무료 AI프로그램을 이용하여 디자인기획(신청)

0830 14:00 실무 굿즈 기획과 제작(신청)

'UIUX(03.28~10.02)' 카테고리의 다른 글

0702 화 uiux 63일차  (0) 2024.07.02
0701 월 uiux 62일차  (1) 2024.07.01
0627 목 uiux 60일차  (0) 2024.06.27
0626 수 uiux 59일차  (0) 2024.06.26
0625 화 uiux 58일차  (0) 2024.06.25

0627 목 uiux 60일차

 

animate({ }, ): (애니메이션, n초 동안)

 

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux</title>
    <!-- <link rel="stylesheet" href="index2.css"> -->
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <style>
        .con {
            width: 200px;
            height: 200px;
        }
        .imgbox {
            display: flex;
        }
    </style>
</head>

<body>
   
    <div class="con">
        <div class="imgbox">
            <div class="img">
                <img src="https://picsum.photos/id/137/200/300" alt="">
            </div>
            <div class="img">
                <img src="https://picsum.photos/id/237/200/300" alt="">
            </div>
            <div class="img">
                <img src="https://picsum.photos/id/437/200/300" alt="">
            </div>
        </div>
    </div>
    <script>
        let i = 0;
        setInterval(function(){
            i++;
            $(".imgbox").animate({marginLeft:-$(".img").width()},600);
        });
    </script>
</body>

</html>



<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux</title>
    <!-- <link rel="stylesheet" href="index2.css"> -->
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <style>
        .con {
            width: 200px;
            height: 300px;
            overflow: hidden;
        }
        .imgbox {
            display: flex;
        }
    </style>
</head>

<body>
   
    <div class="con">
        <div class="imgbox">
            <div class="img">
                <img src="https://picsum.photos/id/137/200/300" alt="">
            </div>
            <div class="img">
                <img src="https://picsum.photos/id/237/200/300" alt="">
            </div>
            <div class="img">
                <img src="https://picsum.photos/id/437/200/300" alt="">
            </div>
        </div>
    </div>
    <script>
        let i = 0; //append=추가해줘.
        $(".imgbox").append($(".img").first().clone(true));
        setInterval(function(){
            i++;
            $(".imgbox").animate({marginLeft:-$(".img").width()*i},600);
            if(i==$(".img").length-1){
                i=0;
            }
        }, 2000);
    </script>
</body>

</html>

<script>
        let i = 0; //append=추가해줘.
        $(".imgbox").append($(".img").first().clone(true));
        setInterval(function(){
            i++;
            $(".imgbox").animate({marginLeft:-$(".img").width()*i},600);
            if(i===$(".img").length-1){
                setTimeout(function(){
                    $(".imgbox").animate({ marginLeft: 0 },0);
                    i = 0;
                }, 700);
            }
        }, 2000);
    </script>

가로로 넘어가는 이미지(슬릭슬라이더 같은 역할)
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux</title>
    <!-- <link rel="stylesheet" href="index2.css"> -->
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <style>
        .con {
            width: 200px;
            height: 300px;
            /* overflow: hidden; */
        }
        .imgbox {
            display: flex;
            flex-direction: column;
        }
        img {
            display: block;
        }
    </style>
</head>

<body>
   
    <div class="con">
        <div class="imgbox">
            <div class="img">
                <img src="https://picsum.photos/id/137/200/300" alt="">
            </div>
            <div class="img">
                <img src="https://picsum.photos/id/237/200/300" alt="">
            </div>
            <div class="img">
                <img src="https://picsum.photos/id/437/200/300" alt="">
            </div>
        </div>
    </div>
    <script>
        let i = 0; //append=추가해줘.
        $(".imgbox").append($(".img").first().clone(true));
        setInterval(function(){
            i++;
            $(".imgbox").animate({marginTop:-$(".img").height()*i},600);
            if(i===$(".img").length-1){
                setTimeout(function(){
                    $(".imgbox").animate({ marginTop: 0 },0);
                    i = 0;
                }, 700);
            }
        }, 2000);
    </script>
</body>

</html>

세로로 넘어가는 이미지
<script>
        let i = 0; //append=추가해줘.
        $(".imgbox").append($(".img").first().clone(true));
        setInterval(function(){
            i++;
            $(".imgbox").animate({marginRight:-$(".img").width()*i},600);
            if(i===$(".img").length-1){
                setTimeout(function(){
                    $(".imgbox").animate({ marginRight: 0 },0);
                    i = 0;
                }, 700);
            }
        }, 2000);
    </script>

이건 왜 안될까? 오른쪽으로 넘어가는 이미지

 


.

웹(혜지쌤)

 

특정 구간에서 스크롤시, 횡으로 이동하는 효과 1부 ( https://codepen.io/YoungHeom/pen/rNgbJjM )

특정 구간에서 스크롤시, 횡으로 이동하는 효과 2부 ( https://codepen.io/YoungHeom/pen/LYovQOQ

특정 구간에서 스크롤시, 횡으로 이동하는 효과 3부 ( https://codepen.io/YoungHeom/pen/qBGwxMo

 

 

( id 501번이 200*300px에서 예쁘긴 한데 사진 크기 커지면 사람나와서 ㅂㄹ ) 

( https://picsum.photos/id/435/1440/810 이게 더 간zl남) 


background-attachment: fixed; 

/* background-image에만 적용됨 */

'UIUX(03.28~10.02)' 카테고리의 다른 글

0701 월 uiux 62일차  (1) 2024.07.01
0628 금 uiux 61일차  (0) 2024.06.28
0626 수 uiux 59일차  (0) 2024.06.26
0625 화 uiux 58일차  (0) 2024.06.25
0624 월 uiux 57일차  (0) 2024.06.20

0626 수 uiux 59일차

img파일로 제출, 이미지 우측 상단에 이름 적기

 

능력단위평가(강사님 메모)

웹페이지
1. 지금 만들어 놓은것들
2. 새로 만들것들

- 브레인 스토밍
1. 와이어 프레임 완성
2. 스토리 보드 완성
3. 계층화
4. 플로우 차트
5. 프로토타입
6. 페이지

UI UX 계획만
GUI = 보기 편하게
UI = 사용하기 편하게
UX = 사용자 경험을
분석하여 사용이 즐겁게
NCS 디지털디자인 구성요소 설계
ⓐ 주제와 부주제, 메뉴, 콘텐츠를 계층화한다.

 1. 수집된 정보를 메모지에 키워드를 중심으로 간략하게 적는다.
 2. 각 메모지에 적힌 정보를 주제, 부주제, 메뉴, 콘텐츠 등으로 분류하고, 이를 나열하면
서 정리한다.

ⓑ 수집된 정보를 폭 5-9개, 깊이 5단 정도 이내로 계층화 한다.
 1. 회의를 통해서 메모지에 적힌 정보를 가로 배열 및 세로 배열을 통해 계층화하면서 각 
정보의 특성이나 내용에 따라 정리한다.
2. 정보를 그룹화하고 유사 정보 혹은 중복 정보 등을 필터링하면서 단순화한다.

ⓒ 각 계층의 정보 체계에 레이블링 한다.
 1. 계층화된 정보의 각 그룹에 레이블(이름)을 붙인다.
 2. 각 단위 그룹 별로 레이블링 된 정보를 검토하면서 문제점을 파악하여 수정한다

 

ⓑ 참고 사진 정보의 계층화
출처: https://brunch.co.kr/@mildwhales/17

 


 

 

 

 

밑줄 애니메이션 1부 ( https://codepen.io/YoungHeom/pen/KKLGvzg )

2부 ( https://codepen.io/YoungHeom/pen/VwOEzxO )

3부 ( https://codepen.io/YoungHeom/pen/dyEgVvY )

4부 ( https://codepen.io/YoungHeom/pen/mdYzBwO )

5부 ( https://codepen.io/YoungHeom/pen/OJYBxBz )

'UIUX(03.28~10.02)' 카테고리의 다른 글

0628 금 uiux 61일차  (0) 2024.06.28
0627 목 uiux 60일차  (0) 2024.06.27
0625 화 uiux 58일차  (0) 2024.06.25
0624 월 uiux 57일차  (0) 2024.06.20
0621 금 uiux 56일차  (0) 2024.06.20

0625 화 uiux 58일차

 

@내가 내는 숙제~

구글에 라이브러리 검색 많이 하기(영어로) ex) 마우스 이펙트, 클릭 이펙트, 슬라이더, 스크롤 등등...

 

@충격 내일 능력단위평가

정보 구조도 - ( https://brunch.co.kr/@applehong/80 ), ( https://velog.io/@kangtsby/3 )

 

출처: https://velog.io/@kangtsby/3

위처럼 이렇게 그리거나 또는 엑셀 형식

 

 

fadeIn, fadeOut 시험범위임! 
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux</title>
    <!-- <link rel="stylesheet" href="index2.css"> -->
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <style>
        main {
            height: 1700px;
            background: antiquewhite;
        }
        .button {
            width: 200px;
            height: 50px;
            align-content: center;
            text-align: center;
            background-color: lightblue;
            cursor: pointer;
        }
        .wrap{
            position: relative;
        }
        .pop {
            position: fixed;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 400px; height: 400px;
            background-color: salmon;
            display: none;
        }
    </style>
</head>

<body>
    <div class="wrap">
        <main>
            <div class="button">버튼<div>
        </main>
        <div class="pop">
            공지<br>
            공지<br>
            공지<br>
            공지<br>
            <a href="#" class="close">닫기</a>
        </div>
    </div>

    <script>
        $(function(){
            $(".button").click( // .버튼을 클릭했을때 실행한다.
                function(){
                    $(".pop").show(); // 숨겨놓은 걸 보여준다.
                }
            );
        })

        $(function(){
            $(".close").click(
                function(){
                    $(".pop").hide();
                }
            );
        })
    </script>
</body>

</html>

ㄴㄴ
    <script>
    $(function(){
        $(".button").click( // .버튼을 클릭했을때 실행한다.
            function(){
                $(".pop").toggle(); // 숨겨놓은 걸 보여준다.
            }
        );
    })

    $(function(){
        $(".close").click(
            function(){
                $(".pop").hide();
            }
        );
    })
    </script>

toggle 버튼을 클릭하면 보여주고 버튼을 클릭하면 숨김
$(".close").click, $(".pop").hide(); 닫기를 누르면 꺼짐
    <script>
        $(function () {
            function pt(){
                $(".pop").toggle();
            }
            $(".button").click(pt);
            $(".close").click(pt);
        })
    </script>

이렇게 내가 만들어도 됨!
    <script>
        $(function () {
            function pt(){
                $(".pop").toggle();
            }
            $(".button").click(pt);
            $(".close").click(pt);
            $(".wrap").click(pt);
        })
    </script>

.wrap을 클릭하면 닫힘

 

 

 

- 페이드아웃(fadeOut) 효과 과정

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux</title>
    <!-- <link rel="stylesheet" href="index2.css"> -->
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <style>
        .img_box {
            position: relative;
        }

        .img {
            position: absolute;
            left: 0;
            top: 0;
        }
    </style>
</head>

<body>
    <div class="img_box">
        <div class="img">
            <img src="https://picsum.photos/id/137/200/300" alt="">
        </div>
        <div class="img">
            <img src="https://picsum.photos/id/237/200/300" alt="">
        </div>
        <div class="img">
            <img src="https://picsum.photos/id/337/200/300" alt="">
        </div>
    </div>

    <script>
        let i = 0;
        $(".img").hide().first().show()// 첫번째만 표시한다.;
    </script>
</body>

</html>

.
    <script>
        let i = 0;
        $(".img").hide().first().show()// 첫번째만 표시한다.;
        setInterval(function(){}, 3000);
    </script>

3000= 3초        .eq n번째
    <script>
        let i = 0;
        $(".img").hide().first().show() // 첫번째만 표시한다.;
        setInterval(function(){
            let ni = (i+1)%3; // %3인 이유 - 이미지가 세 개라서
            $(".img").eq(i).fadeOut(1000);
            $(".img").eq(ni).fadeIn(1000);
            i = ni;
        }, 3000);
    </script>

ㄴ 페이드아웃 효과
 $(".img").hide().first().show()// .img를 모두 선택 후 숨김, 그리고 첫번째만 표시한다.;
    <script>
        let i = 0;
        $(".img").hide().first().show()// 첫번째만 표시한다.;
        setInterval(function(){
            let ni = (i+1)%(".img").length;
            $(".img").eq(i).fadeOut(1000);
            $(".img").eq(ni).fadeIn(1000);
            i = ni;
        }, 3000);
    </script>


let ni = (i+1)%(".img").length; .img의 개수만큼(숫자를 일일이 바꿀 필요가 없음)

 

 

 

 

 

 


 

 

혜지쌤

 

aos 사용법( https://codepen.io/YoungHeom/pen/NWVzjmW )

 

 

백그라운드 컬러가 있고 z-index 순서 제일 위인 로딩중 제이쿼리로 없애는 방법 3 가지 

$('body').imagesLoaded(function(){
$('.loading').css('display', 'none');
AOS.init();
});
// $('body').imagesLoaded(function(){
//  $('.loading').hide();
//  AOS.init();
// });
$('body').imagesLoaded(function(){
$('.loading').remove();
AOS.init();
});




 

'UIUX(03.28~10.02)' 카테고리의 다른 글

0627 목 uiux 60일차  (0) 2024.06.27
0626 수 uiux 59일차  (0) 2024.06.26
0624 월 uiux 57일차  (0) 2024.06.20
0621 금 uiux 56일차  (0) 2024.06.20
0620 목 uiux 55일차  (0) 2024.06.20

0624 월 uiux 57일차

 

$(".menu>il>li").mouseover(
            function(){
                $(this)
            }
        )

$(this) - li가 가지고 있는것

 

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>uiux</title>
    <!-- <link rel="stylesheet" href="index2.css"> -->
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <style>
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            justify-content: center;
        }
        li {
            width: 100px;
            height: 50px;
            align-content: center;
            text-align: center;
            background-color: #efefef;
        }
        .menu {
            display: flex;
        }
        .menu > ul{
            display: flex;
        }
        .in {
            display: flex;
            position: relative;
        }
        .in > ul {
            display: none;
            position: absolute;
            left: 0;
            top: 0;
        }
    </style>
</head>

<body>
    <nav class="menu">
        <ul>
            <li>
                <a href="#">메뉴1</a>
            </li>
        </ul>
        <ul>
            <li>
                <a href="#">메뉴2</a>
            </li>
        </ul>
        <ul>
            <li>
                <a href="#">메뉴3</a>
                
            </li>
        </ul>
    </nav>
    <div class="in">
        <ul class="in0">
            <li><a href="#">메뉴1-1</a></li>
            <li><a href="#">메뉴1-2</a></li>
            <li><a href="#">메뉴1-3</a></li>
        </ul>
        <ul class="in1">
            <li><a href="#">메뉴2-1</a></li>
            <li><a href="#">메뉴2-2</a></li>
            <li><a href="#">메뉴2-3</a></li>
        </ul>
        <ul class="in2">
            <li><a href="#">메뉴3-1</a></li>
            <li><a href="#">메뉴3-2</a></li>
            <li><a href="#">메뉴3-3</a></li>
        </ul>
    </div>

    <script>
        $(".menu>ul>li").mouseover(
            function(){
                $(".in"+$(this).index()).stop().slideDown(200);
                $(".in"+$(this).index()).css("display","flex");
            }
        ).mouseout(
            function(){
                $(".in"+$(this).index()).stop().slideUp(200);
            }
        );
    </script>
</body>

</html>

 

 


 

 

 

 

웹(혜지쌤)

 

 

패스워드 숨김, 보임 모드 변경 ( https://codepen.io/YoungHeom/pen/XWwqxRN )

Nasonry 사용법( https://codepen.io/YoungHeom/pen/pomVxVg )

smooth scroll ( https://codepen.io/YoungHeom/pen/mdYLQPN )

mouseenter 시 hover 발동 효과 ( https://codepen.io/YoungHeom/pen/KKLRrXq )

 

 

웹디자인 앱디자인 둘 다 해보기(웹3 앱2 디자인)

'UIUX(03.28~10.02)' 카테고리의 다른 글

0626 수 uiux 59일차  (0) 2024.06.26
0625 화 uiux 58일차  (0) 2024.06.25
0621 금 uiux 56일차  (0) 2024.06.20
0620 목 uiux 55일차  (0) 2024.06.20
0619 수 uiux 54일차  (0) 2024.06.19

0621 금 uiux 56일차

 

 

 

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <style>
        .a {
            width: 100px;   height: 100px;
            border: 1px solid #000;
            transition: all .3s;
        }
    </style>
</head>

<body>
    <div class="a" id="a1"></div>
    <div class="a" id="a2"></div>
    <div class="a" id="a3"></div>
    <script>
        $(".a").mouseover(
            function() {
                $(".a").css({ "width": "200px", });
            }
        ).mouseout(
            function(){
                $(".a").css({ "width": "100px", });
            }
        )
    </script>
</body>

</html>


제이쿼리로 'hover하면 늘어나는 박스' 만들기

 

for(let i = 1; t<= $(".a").length; i++){
        $("#a"+i).mouseover(function(){
            $("#a"+i).css({"transition": "all .3s", "width": "200px";})
            
        }).mouseout(function(){
            $("#a"+i).css({"transition": "all .3s", "width": "100px";})
        });
       }
머가 안됏지

 

 

 

 

.

 

 

 

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <style>
        .a {
            width: 100px;
            height: 100px;
            border: 1px solid #000;
            transition: all .3s;
        }
        .b {
            width: 100px;
            height: 30px;
            background-color: skyblue;
            border: 1px solid #000;
        }
    </style>
</head>

<body>
    <div class="a" id="a1"></div>
    <div class="a" id="a2"></div>
    <div class="a" id="a3"></div>

    <div class="b" id="b1"></div>
    <div class="b" id="b2"></div>
    <div class="b" id="b3"></div>
    <div class="b" id="b4"></div>
    <script>

        function abc(f1, f2, f3, f4) {
            for (let i = 1; i <= $(f1).length; i++) {
                $(f2 + i).mouseover(function () {
                    $(f2 + i).css({ "transition": "all .2s", "width": f4; })

                }).mouseout(function () {
                    $(f2 + i).css({ "transition": "all .1s", "width": f3; })
                });
            }
        }
        abc(".a", "#a", "100px", "300px");
        abc(".b", "#b", "50px", "400px");

    </script>
</body>

 

얜또왜안됨?

 

 

 

 

 

 

 

 

 

 function abc(f1, f2, f3, f4) {
            for (let i = 1; i <= $(f1).length; i++){
                $(f2 + i).mouseover(function() {
                    $(f2 + i).css({ "transition": "all .2s", "width": f4; })
                }).mouseout(function () {
                    $(f2 + i).css({ "transition": "all .1s", "width": f3; })
                });
            }
        }
        abc(".a", "#a", "100px", "300px");
        abc(".b", "#b", "50px", "400px");

 

얜또왜??

 

 

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
    <style>
        .a {
            width: 100px;
            height: 100px;
            border: 1px solid #000;
            transition: all .3s;
        }

        .b {
            width: 100px;
            height: 30px;
            background-color: skyblue;
            border: 1px solid #000;
        }
    </style>
</head>

<body>
    <div class="a" id="a1"></div>
    <div class="a" id="a2"></div>
    <div class="a" id="a3"></div>
    <script>

        let i = 0;
        function ae(ix) {
            $(".a").eq(ix).css({ "width": "200px" });
            setTimeout(
                function () {
                    $(".a").eq(ix).css({ "width": "100px" });
                }
                , 2000);
        }
        setInterval(
            function () {
                ae(i);
                i++;
                if (i == $(".a").length) {
                    i = 0;
                }
            }
            , 4000);
    </script>
</body>

 

 

 


 

 

 

 

웹(혜지쌤)

 

체크박스 만들기 ( https://codepen.io/YoungHeom/pen/rNgdwxK )

 

 

 

 

 

 

 

.

 

 

.

 

 

.

'UIUX(03.28~10.02)' 카테고리의 다른 글

0625 화 uiux 58일차  (0) 2024.06.25
0624 월 uiux 57일차  (0) 2024.06.20
0620 목 uiux 55일차  (0) 2024.06.20
0619 수 uiux 54일차  (0) 2024.06.19
0618 화 uiux 53일차  (0) 2024.06.18

0620 목 uiux 55일차

웹코딩 참고 사이트(김영원 강사님)
https://kimyws.tistory.com/29 )
https://webstoryboy.co.kr/ )

플렉스 개구리
https://flexboxfroggy.com/#ko )
혜지 강사님 수업페이지(html&css) ( https://codepen.io/hjyee/full/OJGrVYJ ).
자바스크립트 수업페이지 ( https://codepen.io/hjyee/full/PogMVOP )
깃허브 기초 ( https://codepen.io/hjyee/full/LYoNWga )
기초 키보드 사용법 ( https://codepen.io/YoungHeom/pen/eYaOYEX )
연산자 ( https://codepen.io/YoungHeom/pen/Rwmbxze )
코드펜 사용법 ( https://codepen.io/YoungHeom/pen/gOJOWgE )
무료 강의 ( https://programmers.co.kr/ )
자바스크립트 정리 ( https://velog.io/@solmii/Java-Script%EB%A5%BC-Script )

피그마 강좌 ( https://www.youtube.com/@yeonjung-figma ), ( https://www.youtube.com/@UXUIDesign ) - 개인적 메모
작업물 보기 - 핀터레스트나 드리블( https://dribbble.com/ ), 노트폴리오, 비핸스, 디자인 나스 - ( https://designnas.com/ )
자격증 기출문제 ( https://www.comcbt.com/ )( https://quizeey.com/ )
https://cubic-bezier.com/ )
유용한 링크 모음 ( https://codepen.io/YoungHeom/pen/XWwzPvE )

.

강사님 메모

25일평가 안내
프로토타입 수집 및 제작
스토리보드, 브레인 스토밍
스케치 자료 제출
자료는 이미지 또는 pdf로 제출
(와이어 프레임 형식)

경쟁 분석 
신규사업 개발 과
기존 사업 개선을 위해
실시

조사대상 선정
기본원칙 : 완성도 높고
시장에서 성공한 제품, 서비스

주요원칙
현재의 상위 서비스
추천서비스
성공한서비스
평판 및 주적 랭킹 상위

트렌드 분석
트렌드 : 경향, 동향, 추세
단기간 지속되는 변화나 현상
UX,UI디자인 가치와 동일시

트렌드 분석방법
소비자 행동패턴 조사나 분석
소비자들이 어떠한 욕구를 갖고있는지를 예측

주변현상 조사 분석
정확히 파악하는 과정

새로운 문화와 변화를 읽어야함

디자인 트렌드

기술트렌드
가트너 10대 전략

제이쿼리1 ( https://codepen.io/YoungHeom/pen/QWRQXLg )

2( https://codepen.io/YoungHeom/pen/zYQRVxm )

 

--a 변수 '--'

<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>

<div class="a1">기본</div>

<script>
$(function(){}) // 모두 읽어들인다음 실행
$(".a1");
documet.querySeletorAll(".a1"); // a1이름을 가진 태그를 모두 선택
</script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>

<div class="a1">기본</div>
<div class="a1"></div>
<div class="a1"></div>
<div class="a1"></div>
<script>
$(function(){}) // 모두 읽어들인다음 실행
$(".a1"). text("안녕");
documet.querySeletorAll(".a1"); // a1이름을 가진 태그를 모두 선택
</script>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>

<div class="a1">기본</div>
<div class="a1">1</div>
<div class="a1">2</div>
<div class="a1">3</div>
<script>
$(function(){}) // 모두 읽어들인다음 실행
$(".a1"). css("height", "100px");
$(".a1"). css("background", "aqua");
documet.querySeletorAll(".a1"); // a1이름을 가진 태그를 모두 선택
</script>

 

 


 

 

object-fit: "object-cover"는 "object-fit" 속성의 하나로, 이미지나 비디오를 컨테이너에 맞추는 방식을 설정.


컨테이너를 완전히 채우도록 이미지나 비디오의 크기를 조정하지만 but! 콘텐츠의 가로세로 비율은 유지되지 않을 수 있음.

 

 

<ul class="grid sm:grid-cols-2 md:grid-cols-5 lg:grid-cols-5 xl:grid-cols-5 gap-5">

.

'UIUX(03.28~10.02)' 카테고리의 다른 글

0624 월 uiux 57일차  (0) 2024.06.20
0621 금 uiux 56일차  (0) 2024.06.20
0619 수 uiux 54일차  (0) 2024.06.19
0618 화 uiux 53일차  (0) 2024.06.18
0617 월 uiux 52일차  (0) 2024.06.17

0619 수 uiux 54일차

 

웹코딩 참고 사이트(김영원 강사님)
https://kimyws.tistory.com/29 )
https://webstoryboy.co.kr/ )

플렉스 개구리
https://flexboxfroggy.com/#ko )
혜지 강사님 수업페이지(html&css) ( https://codepen.io/hjyee/full/OJGrVYJ ).
자바스크립트 수업페이지 ( https://codepen.io/hjyee/full/PogMVOP )
깃허브 기초 ( https://codepen.io/hjyee/full/LYoNWga )
기초 키보드 사용법 ( https://codepen.io/YoungHeom/pen/eYaOYEX )
연산자 ( https://codepen.io/YoungHeom/pen/Rwmbxze )
코드펜 사용법 ( https://codepen.io/YoungHeom/pen/gOJOWgE )
무료 강의 ( https://programmers.co.kr/ )
자바스크립트 정리 ( https://velog.io/@solmii/Java-Script%EB%A5%BC-Script )

피그마 강좌 ( https://www.youtube.com/@yeonjung-figma ), ( https://www.youtube.com/@UXUIDesign ) - 개인적 메모
작업물 보기 - 핀터레스트나 드리블( https://dribbble.com/ ), 노트폴리오, 비핸스, 디자인 나스 - ( https://designnas.com/ )
자격증 기출문제 ( https://www.comcbt.com/ )( https://quizeey.com/ )
https://cubic-bezier.com/ )
유용한 링크 모음 ( https://codepen.io/YoungHeom/pen/XWwzPvE )

 

실무 팁 - 제주 맥주 상단바( https://codepen.io/YoungHeom/pen/WNBMXgy )

 

 

jit모드 짓모드

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css">

'UIUX(03.28~10.02)' 카테고리의 다른 글

0621 금 uiux 56일차  (0) 2024.06.20
0620 목 uiux 55일차  (0) 2024.06.20
0618 화 uiux 53일차  (0) 2024.06.18
0617 월 uiux 52일차  (0) 2024.06.17
0614 금 uiux 51일차  (1) 2024.06.14

0618 화 uiux 53일차

웹코딩 참고 사이트(김영원 강사님)
https://kimyws.tistory.com/29 )
https://webstoryboy.co.kr/ )

플렉스 개구리
https://flexboxfroggy.com/#ko )
혜지 강사님 수업페이지(html&css) ( https://codepen.io/hjyee/full/OJGrVYJ ).
자바스크립트 수업페이지 ( https://codepen.io/hjyee/full/PogMVOP )
깃허브 기초 ( https://codepen.io/hjyee/full/LYoNWga )
기초 키보드 사용법 ( https://codepen.io/YoungHeom/pen/eYaOYEX )
연산자 ( https://codepen.io/YoungHeom/pen/Rwmbxze )
코드펜 사용법 ( https://codepen.io/YoungHeom/pen/gOJOWgE )
무료 강의 ( https://programmers.co.kr/ )
자바스크립트 정리 ( https://velog.io/@solmii/Java-Script%EB%A5%BC-Script )

피그마 강좌 ( https://www.youtube.com/@yeonjung-figma ), ( https://www.youtube.com/@UXUIDesign ) - 개인적 메모
작업물 보기 - 핀터레스트나 드리블( https://dribbble.com/ ), 노트폴리오, 비핸스, 디자인 나스 - ( https://designnas.com/ )
자격증 기출문제 ( https://www.comcbt.com/ )( https://quizeey.com/ )
https://cubic-bezier.com/ )
유용한 링크 모음 ( https://codepen.io/YoungHeom/pen/XWwzPvE )

HTML에서 사용되는 quot? amp? lt? gt? 등등 기호 ( https://darusamu.tistory.com/32 )

keyframes 찾아보기. 정리된거 블로그에 적기( https://velog.io/@ye-ji/CSS-%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98keyframes )

전에 작업했던 만년필 사이트 파일 css부분 다시 /* ~ 시작 */  /* ~ 끝 */으로 잘 정리하기

R, G, B 색상 이름 모음, 색상 이름들(color names) ( https://codepen.io/YoungHeom/pen/dyEvErj )

 

 

밑줄 애니메이션 ( https://codepen.io/YoungHeom/pen/OJYQJpj )

상단바 ( https://codepen.io/YoungHeom/pen/zYQRYpg )

/* css에서 변수 만들기 */
:root {
    --site-width: 800px;
}
/* 라이브러리 */
.con {
    width: var(--site-width);
}
.con-min-width {
    min-width: var(--site-width);
}
/* css에서 변수 만들기 */

 

currentcolor - ( https://codepen.io/YoungHeom/pen/rNgJNQB )

글자 색상, 보더 색상 똑같이 맞추고 싶을 때  border: 1px solid currentcolor;

 

 

 

 

 

 

 

괜찮다 이 포트폴리오~

- ( https://designnas.com/portfolio/mobile_pf/newron/index.html )

- ( http://portfolio.ejungle.kr/DINO_03/hsg/ )

'UIUX(03.28~10.02)' 카테고리의 다른 글

0620 목 uiux 55일차  (0) 2024.06.20
0619 수 uiux 54일차  (0) 2024.06.19
0617 월 uiux 52일차  (0) 2024.06.17
0614 금 uiux 51일차  (1) 2024.06.14
0613 목 uiux 50일차  (0) 2024.06.13

0617 월 uiux 52일차

웹코딩 참고 사이트(김영원 강사님)
https://kimyws.tistory.com/29 )
https://webstoryboy.co.kr/ )

플렉스 개구리
https://flexboxfroggy.com/#ko )
혜지 강사님 수업페이지(html&css) ( https://codepen.io/hjyee/full/OJGrVYJ ).
자바스크립트 수업페이지 ( https://codepen.io/hjyee/full/PogMVOP )
깃허브 기초 ( https://codepen.io/hjyee/full/LYoNWga )
기초 키보드 사용법 ( https://codepen.io/YoungHeom/pen/eYaOYEX )
연산자 ( https://codepen.io/YoungHeom/pen/Rwmbxze )
코드펜 사용법 ( https://codepen.io/YoungHeom/pen/gOJOWgE )
무료 강의 ( https://programmers.co.kr/ )
자바스크립트 정리 ( https://velog.io/@solmii/Java-Script%EB%A5%BC-Script )

피그마 강좌 ( https://www.youtube.com/@yeonjung-figma ), ( https://www.youtube.com/@UXUIDesign ) - 개인적 메모
작업물 보기 - 핀터레스트나 드리블( https://dribbble.com/ ), 노트폴리오, 비핸스, 디자인 나스 - ( https://designnas.com/ )
자격증 기출문제 ( https://www.comcbt.com/ )( https://quizeey.com/ )
https://cubic-bezier.com/ )

HTML에서 사용되는 quot? amp? lt? gt? 등등 기호 ( https://darusamu.tistory.com/32 )

keyframes 찾아보기. 정리된거 블로그에 적기( https://velog.io/@ye-ji/CSS-%EC%95%A0%EB%8B%88%EB%A9%94%EC%9D%B4%EC%85%98keyframes )

전에 작업했던 만년필 사이트 파일 css부분 다시 /* ~ 시작 */  /* ~ 끝 */으로 잘 정리하기

R, G, B 색상 이름 모음, 색상 이름들(color names) ( https://codepen.io/YoungHeom/pen/dyEvErj )

 

 

카카오뱅크 모작 정리 ( https://codepen.io/YoungHeom/pen/NWVdVbQ )

n차시도 될 때마다 꼭 우측하단 fork 누르기

깃허브에 올라와있는 코드 파일들 다운받는 방법. 모르면 zip파일 다운받아서 하면 됨!

 

 

리포지터리 이름이 파일 이름과 달라도 1도 상관 없음.

 

세팅 - Pages - Branch none을 main으로 바꾼 뒤 저장(Save)

'UIUX(03.28~10.02)' 카테고리의 다른 글

0619 수 uiux 54일차  (0) 2024.06.19
0618 화 uiux 53일차  (0) 2024.06.18
0614 금 uiux 51일차  (1) 2024.06.14
0613 목 uiux 50일차  (0) 2024.06.13
0612 수 uiux 49일차  (0) 2024.06.12

+ Recent posts