Study/Example & Plug-in(28)
-
jQuery Plug-in innerFade
jQuery Plug-in innerFade Box Shadow and Text Shadow Transparency with RGBA and Opacity Custom Web Fonts with @Font-Face
2021.12.20
-
jQuery Plug-in FancyBox
jQuery Plug-in FancyBox http://fancybox.net/ Fancybox - Fancy jQuery lightbox alternative What is it? FancyBox is a tool for displaying images, html content and multi-media in a Mac-style "lightbox" that floats overtop of web page. It was built using the jQuery library. Licensed under both MIT and GPL licenses Features Can display images, HTML fancybox.net https://fancyapps.com/ Fancyapps | Prem..
2021.12.20
-
jQuery Plug-in LightBox
jQuery Plug-in LightBox
2021.12.20
-
form 이름,패스워드 검사
이름 5자 이상 입력 검사 window.onload=function(){ var elUsername = document.getElementById('username'); // input 지정 var elMsg = document.getElementById('feedback'); // 피드백이 나올 곳 지정 function checkUsername() { // 함수 생성 if (this.value.length < 5) { elMsg.textContent = 'Username must be 5 characters or more'; } else { elMsg.textContent = ''; } } elUsername.addEventListener('blur', checkUsername, false); // 함..
2021.12.03