본문 바로가기

분류 전체보기

ckeditor5 - toolbar 편집하기 ckeditor5 toolbar 편집하는 방법입니다. 아래와 같이 툴바 기능을 편집하시려면 옵션명을 수정 하면 됩니다. ClassicEditor .create( document.querySelector( '#editor' ), { //---------------------------------------------------------------- // 여기 툴바 부분의 옵션명을 넣어주면 원하는 설정을 할수 있습니다. toolbar: [ 'heading', '|', 'bold', 'italic', 'link', 'bulletedList', 'numberedList', 'blockQuote' ], //-----------------------------------------------------------..
php 텍스트 별표 바꾸기 참조 끝의 세 글자 별표변경 [PHP] 문자열 가운데 별표치는 함수 이름이나 전화번호 중간 부분을 별표 *** 표시로 숨기기 이름에 가운데 문자를 *로 변경하고 싶었다. 1번 예제는 일반적인 방식으로 텍스트를 변경하는것이지만 2번 예제 적용해보니 깔끔하게 변경 되었다. function mytory_asterisk($string) { $string = trim($string); $length = mb_strlen($string, 'utf-8'); $string_changed = $string; if ($length = 3) { // 3으로 나눠서 앞뒤. $leave_length = floor($length/3); // 남겨 둘 길이. 반올림하니 너무 많이 남기게 돼, 내림으로 해서 남기는 걸 줄였다. $a..
자멘도 https://www.jamendo.com/ 자멘도 https://www.jamendo.com/ Jamendo Music | Free music downloads Free music downloads and streaming. Discover and explore 600,000+ free songs from 40,000+ independent artists from all around the world. www.jamendo.com
스플릿샤이어 https://www.splitshire.com 스플릿샤이어 https://www.splitshire.com
픽사베이 http://pixabay.com 픽사베이 http://pixabay.com 불러오는 중입니다...
언스플래쉬 https://unsplash.com 언스플래쉬 https://unsplash.com 불러오는 중입니다...
유튜브 오디오 라이브러리 유튜브 오디오 라이브러리 https://www.youtube.com/audiolibrary/music
Browser 사이즈에 따른 font-size 값(css) 자동 변경 $(window).on('resize', function(){ sidenvx = $("body").width(); // 브라우저 리사이즈 넓이 fontSize(); // 폰트사이즈 조정 side_wd(); // 사이드 메뉴 넓이 조정 }); // 폰트사이즈 값 구하기 function fontSize(){ var brw = $(window).width(); if ( brw >= 640 ){ var fontSize = 1000/100*2; $("html").css({ "font-size": fontSize }); } else { var fontSize = $(window).width()/60*2; $("html").css({ "font-size": fontSize }); //console.log( "일반 대..