본문 바로가기
반응형

프로그램524

Creative Menu Hover Effects html css https://codepen.io/mr-zouraiz123/pen/PoejKOR Creative Menu Hover Effects html css ... codepen.io 2023. 10. 25.
Pure CSS Animated Tab Menu https://codepen.io/tutsplus/pen/YzOOZrx How to Build a Pure CSS Animated Tab Menu ... codepen.io 2023. 10. 25.
css button generator 모음 https://css3buttongenerator.com/ css3buttongenerator.com css3buttongenerator.com https://www.bestcssbuttongenerator.com/ A useful tool for designing css buttons Button generator is a free online tool that allows you to create cross browser css button styles. www.bestcssbuttongenerator.com https://cssbuttongenerator.com/ CSS Button Generator | create CSS buttons without code ArialArial BlackComic.. 2023. 3. 6.
CSS Box Shadow Generator 모음 https://cssgenerator.org/box-shadow-css-generator.html Box Shadow CSS Generator A box-shadow CSS Generator tool to quickly generate box-shadow CSS declarations. cssgenerator.org https://html-css-js.com/css/generator/box-shadow/ Box Shadow CSS Generator Set the properties of your box shadow to get the CSS style. Use the sliders and the color picker to set the values and watch the live preview htm.. 2023. 3. 4.
CSS Border Radius Generator 모음 https://border-radius.com/ CSS Border Radius Generator border-radius.com https://9elements.github.io/fancy-border-radius/ Fancy Border Radius Generator Generator to build organic shapes with CSS3 border-radius 9elements.github.io https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Backgrounds_and_Borders/Border-radius_generator Border-radius generator - CSS: Cascading Style Sheets | MDN This to.. 2023. 3. 1.
CSS menu Generator 모음 https://www.cssportal.com/css3-menu-generator/ CSS Responsive Menu Generator - CSS Portal CSS responsive menu generator, design and visually see the changes to your new menu. All CSS, HTML and JS code is automatically generated. www.cssportal.com http://www.menucool.com/css-menu Online CSS Menu Generator MENU You can see the live example in the One menu HTML code file for all pages viewing with .. 2023. 2. 28.
CSS Tooltip Generator 모음 http://www.menucool.com/tooltip/css-tooltip CSS Tooltip Generator This generator will help you design and create CSS tooltips. Demo Source Code: TOP RIGHT BOTTOM LEFT Css Tooltip is simple, and considered satisfactory in most cases. However, there are times that its limitations are becoming clear. www.menucool.com https://www.cssportal.com/css-tooltip-generator/ CSS Tooltip Generator - CSS Porta.. 2023. 2. 27.
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.. 2022. 8. 2.
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... 2022. 8. 2.
[PHP] addslashes 사용법 ▶ php addslashes 사용법 ◆ 설명 작은따옴표('), 큰따옴표("), 백슬래시(\) 앞에 백슬래시가 추가 됨 ◆ 사용 예제 1 소스 2022. 3. 3.
[PHP] preg_filter() 사용법 ▶ php preg_filter() 사용법 ◆ 설명 패턴 일치를 통해 문자열 대체 또는 문자열 배열을 반환 ◆ 사용방법 1. 인덱스 배열이 있는 있는 경우 preg_filter(pattern, replacement, input, limit, count) pattern // 검색할 대상을 나타내는 정규식 replacement // 일치하는 패턴을 대체할 문자열 input // 대체 수행되는 문자열 또는 문자열 배열 limit // 각 문자열에서 수행할 수 있는 대체 수에 대한 제한을 설정 count // 함수가 실행된 후 이 변수에 수행된 교체 횟수를 나타내는 숫자가 포함 ◆ 사용 예제 1 소스 결과 preg_filter returns Array ( [0] => A:C:1 [1] => B:C:a [2] =.. 2022. 2. 25.
[PHP] 숫자 관련 함수 사용법 ▶ php 숫자 관련 함수 사용법 ◆ 사용방법 1. is_int() - 변수의 유형이 정수인지 확인 결과 bool(true) bool(false) 2. is_float() - 소수점 또는 지수 형식의 숫자가 있는 확인 결과 bool(true) 3. is_numeric() - 변수가 숫자 또는 숫자 문자열이면 true 반환 그렇지 않으면 false를 반환한다. 결과 bool(true) bool(true) bool(false) 2022. 2. 22.