spring boot > jar 실행파일 만들기 프로젝트에 오른쪽 마우스 클릭 > Run As > Run Configurations... 클릭 "Gradle Task" 오른쪽 마우스 클릭 > New Configuration 클릭 "Gradle Tasks" 항목에 "bootjar" 입력 "Working Directory" 에 작업중이 Workspace 선택 "Apply" 후에 "Run" java spring boot 2023.02.25
모바일에서 유튜브영상 크기 자동조정 방법 .yutubeVideo { margin-top:20px; position: relative; width: 100%; padding-bottom: 56.25%; } .yutubeVideo iframe { position: absolute; width: 100%; height: 100%; } https://www.youtube.com/embed/유튜브영상아이디" title="Documentation Glass Partiton without model" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen> 웹관련자료(web)/etc & doc 2023.02.08
jQuery ui dialog x close event $( "#dialog-form" ).dialog({ autoOpen: false, height: 200, width: 450, dialogClass: "dialog", modal: true, open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); }, -> 'x' button display none buttons: { "cancel":function() { alert('cancle event'); $( this ).dialog( "close" ); } }, close: function() { $(".spm-input").val(""); } }); *** open: function(event, ui) { $(".ui-dialog-titleba.. 웹관련자료(web)/jQuery & JavaScript 2022.12.17
web design color palette generator https://material.io/resources/color/#!/?view.left=0&view.right=0 Color Tool - Material Design Create and share color palettes for your UI, and measure the accessibility of any color combination. material.io http://colormind.io/bootstrap/ Colormind - Bootstrap UI colors See the color palette applied to a demo landing page. For this palette, lighter shades will appear on the left. For best results.. 웹관련자료(web)/etc & doc 2022.09.30
RGBA and Hex Color Converter https://cssgenerator.org/rgba-and-hex-color-generator.html RGBA and Hex Color Converter A RGBA and Hex Color CSS Generator tool to quickly generate RGBA and Hex Color CSS declarations. cssgenerator.org http://hex2rgba.devoth.com/ HEX 2 RGBA Color Calculator | by @Devoth This calculator is built in JavaScript. Turn it on mate. Short info This CSS3 calculator was built for lazy people like myself... 웹관련자료(web)/etc & doc 2022.09.30
php UID 생성하기 프로그램을 하다보면 uid값을 생성해야 하는 경우가 있습니다. 아래와 같이 사용하면, 간단하게 uid값을 생성해서 사용이 가능합니다. echo uuidgen(); function uuidgen() { return sprintf('%08x-%04x-%04x-%04x-%04x%08x', mt_rand(0, 0xffffffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffffffff) ); } 웹관련자료(web)/php & ajax 2022.09.22
청계천에 살고 있는 왜가리 물고기 사냥을 위해서 청계천을 돌아다니는 왜가리. 움직이지 않고 가만히 있기도 한다. 참을성이 많은 왜가리. 물고기들은 어디에 있지? 내가 있는 동안 계속 허탕이다. 일상을 걷다 2022.09.21
php 문자열 자르기(substr) - 원하는 길이만큼 잘라서 가져오기 php에서 문자열을 잘라서 가져오는 방법에 대해서 알아보겠습니다. 시간에서 시분초만 가져오는 방법을 예로 들어보겠습니다. 시간이 '2022-08-08 08:08:08' 이라고 한다면, 우리가 잘라서 가져오고 싶은 시분초는 '08:08:08' 입니다. $time = '2022-08-08 08:08:08'; $time_s = substr($time,11,8); echo $time_s; 결과는 08:08:08 #설명 substr($time,11,8) 함수의 기능은 $time 문자열에서 11번째 부터, 8개의 문자열을 가져오라는 함수입니다. 웹관련자료(web)/php & ajax 2022.09.15