본문 바로가기

전체 글191

테라로사에서 - 바나나 케이크 2023. 3. 16.
놀고싶다 2023. 3. 16.
술에 취한 날 2023. 3. 16.
[PHP] AWS S3 Bucket의 파일 삭제 * 현 예제는 그누보드에서 작성하였다. * 파일 업로드 자료부터 참고 $cf =array(); $cf['AWS_KEY'] = '액세스 키 ID'; $cf['AWS_SECRET'] = '비밀 액세스 키'; $cf['aws_bucket'] = '버킷명; $cf['s3Client'] = [ 'version' => 'latest', 'region' => 'AWS 리전(ex: ap-northeast-2)', 'credentials' => array( 'key' => $cf['AWS_KEY'], 'secret' => $cf['AWS_SECRET'], ) ]; // 다운로드한 SDK 파일의 autoloader를 불러옵니다. include_once(G5_PATH.'/aws/aws-autoloader.php'); // .. 2023. 3. 16.
[JS] SVG 이미지 이용한 별점 기능 제작 (0.1 단위) // 그누보드의 최근게시물 기능에 이용하기 위해 작성하였다. .rating-wrap{ padding: 10px; display: flex; } .rating { display: flex; align-items: center; position: relative; } .starcolor{ fill: #1976d2; } .overlay { background-color: #000; opacity: 0.5; position: absolute; top: 0; right: 0; bottom: 0; z-index: 1; transition: all 0.3s ease-in-out; } @supports (mix-blend-mode: color) { .overlay{ mix-blend-mode: color; opacit.. 2023. 3. 16.
[PHP+JQUERY] 2단계 카테고리 메뉴 // 아래의 예제는 그누보드를 기반으로 하여 관심 제품 관리 컨셉으로 제작되었다. ​CSS // 그누보드의 기본 CSS에 포함된 스타일 구문은 작성하지 않았다. .bold { font-weight: bold; } .d-table { display: table; } .table-cell { display: table-cell; vertical-align: middle; } .d-flex {display: flex;} .wd-100 { width: 100%; } .wrap-interestprod-adm { width: 100%; } .wrap-interestprod-adm .div-head, .wrap-interestprod-adm .div-body { width: 100%; } .wrap-interestp.. 2023. 3. 16.