애플_1
완성 HTML DOCTYPE html> $(document).ready(function () { // 각각의 박스 안에 숨어있는 오버레이, 캡션요소를 선택하여 올리면 나타나게 // 마우스가 벗어나면 사라지게 표현(animate) $('.box').on('mouseover', function () { $(this).find('span,strong').stop(true).animate({ opacity: '1' }, 300, 'swing'); }) .on('mouseout', function () { $(this).find('span,strong').stop(true).animate({ opacity: '0' }, 300, 'swing'); }); /* 팝업슬라이드가 가능한 라이트박스( 컬러박스 ) 플러그인..
♥ 코딩(Coding)/코딩연습
2022. 4. 27. 23:13