i 전체검색 결과
게시판 - 10 개 / 게시물 - 50 개 2 / 5 페이지 열람 중
'CSS Reference' 게시판 내 결과
-
CSS Flexbox 완전 정리. 포트폴리오 만드는 날까지! | 프론트엔드 개발자 입문편: HTML, CSS, Javascript
Flexbox만 잘 이해하셔도 이제 본격적으로 웹사이트의 구조를 만들 수 있어요 ※ 현업팁을 배우면서 조금더 체계적으로 공부해 보고 싶다면 드림코딩 아카데미를 확인해 보세요 ※ 드림코딩 아카데미: http://academy.dream-coding.com/ ※ AI기반 코드 자동 완성 툴 Kite ? VS Code에서 빠르고 똑똑하게 코딩할 수 있게 도와주는 AI를 기반으로한 무료 코드 자동 완성툴 한번 사용해 보세요: https://tinyurl.com/ycedv3sj 영상 끝까지 다 보시구 나오는 숙제도 다 한번씩 해보세…
익명 2021-05-27 15:52:37 -
jusitify-content 속성?
The alignment is done after the lengths and auto margins are applied, meaning that, if in a Flexbox layout there is at least one flexible element, with flex-grow different from 0, it will have no effect as there won't be any available space /* Positional alignment */ justify-content: center; /* …
익명 2021-05-27 15:17:33
'JAVASCRIPT Reference' 게시판 내 결과
-
JAVASCRIPT 5분 타이머
<scriptlanguage="JavaScript">varSetTime=300;//최초설정시간(기본:초)functionmsg_time(){//1초씩카운트m=Math.floor(SetTime/60)+"분"+(SetTime%60)+"초";//남은시간계산varmsg="현재남은시간은<fontcolor='red'>"+m+"</font>입니다.";document.all.ViewTimer.innerHTML=msg;//div영…
익명 2020-04-25 02:19:40 -
Email Select Jquery 선택 스크립트
<div> <label class="contentlabel"> 사용자 이메일 </label> <input class="" id="email1" type="text" class="box"> @ <input class="" id="email2" type="text" class="box"> <select id="…
익명 2019-12-09 16:05:24
'Jquery Reference' 게시판 내 결과
-
Welcome to jquery-confirm!
Welcome to jquery-confirm!Easy to use and highly flexible!A jQuery plugin that provides great set of features like, Auto-close, Ajax-loading, Themes, Animations and more.This plugin is actively developed, I would love you have your suggestions.Please post your Suggestions here.angular-confirm is her…
익명 2021-04-15 03:15:33 -
[jQuery] 확인 창(confirm), 페이지 이동(location.replace)
Yes, No 확인 창 : confirm('메세지 입력');페이지 이동 : location.replace('이동할 페이지');$(document).ready(function(){ $('#Btn').click(function() { var result = confirm('Are you sure you want to do this?'); if(result) { //yes location.replace('index.php'); } else { …
익명 2021-04-15 03:13:54 -
모달팝업 및 다중 폼 사용중 엔터키로 인한 submit문제 해결제시
부트스트랩에서나 다중 폼을 사용하는 모달팝업중 엔터를 치면 페이지가 새로고쳐지거나 submit처리되는 문제점이 존재한다.1. 문제 해결 제시<form name="form" onsubmit="return false">2. 문제 해결 제시<script> Function onsubmitA (event) { var form = document.form; var form_id = document.elementById("form_id")' alert("엔터키를…
익명 2020-08-31 11:25:49 -
Jquery.Confirm Migrate from v2 to v3
V3 introduces a lot of new features, so its not possible to make it backwards compatible with v2. Its recommended to update your plugin to v3, which is much more stable.Defining buttonsThe way you define buttons in v3 is completely changed.v2.// limited to two buttons. $.confirm({ confirmButton:…
익명 2020-05-01 14:13:57 -
Jquery.Confirm confirm 확인 메세지창 적용사례 1
$.confirm({ columnClass: 'col-md-6 col-md-offset-3', title: "주말(공휴일)예약취소", content: var1+"일의 예약 취소하시겠습니까?", animation: 'bottom', closeAnimation: 'top', confirmButton: "확인", confirmButtonClass: "btn-info", cancelButton: "닫기", cancelButtonClass: "…
익명 2020-05-01 14:00:43 -
Jquery.Confirm 플러그인 Alert메세지창 적용 1
$.alert({ columnClass: 'col-md-6 col-md-offset-3', title: "메세지 텍스트", content: "일 주말(공휴일) 예약취소는<b style='color:#ff6600'> 5일전만 가능합니다.</b><br>고객센터(예약실) <a Tel='000-0000-0000'>000-0000-0000</a></b> 번으로 문의해주세요", animation: 'rotate', closeAnimation: …
익명 2020-05-01 13:59:08