이미지 갤러리
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>fancybox</title>
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.css" />
<script src="https://cdn.jsdelivr.net/gh/fancyapps/fancybox@3.5.7/dist/jquery.fancybox.min.js"></script>
<style>
img {
display: inline-block;
width: 500px; height: 500px;
object-fit: cover;
}
</style>
</head>
<body>
<a data-fancybox="gallery" data-caption="Caption for single image" href="https://source.unsplash.com/lSXpV8bDeMA/1536x2304"><img src="https://source.unsplash.com/lSXpV8bDeMA/1536x2304"></a>
<a data-fancybox="gallery" data-caption="산이미지" href="https://source.unsplash.com/ty4X72BSsXY/1279x853"><img src="https://source.unsplash.com/ty4X72BSsXY/1279x853"></a>
<a data-fancybox="gallery" data-caption="산이미지" href="https://source.unsplash.com/QkPb5g9p338/1279x719"><img src="https://source.unsplash.com/QkPb5g9p338/1279x719"></a>
<a data-fancybox="gallery" data-caption="산이미지" href="https://source.unsplash.com/z55CR_d0ayg/1279x853"><img src="https://source.unsplash.com/z55CR_d0ayg/1279x853"></a>
<a data-fancybox="gallery" data-caption="산이미지" href="https://source.unsplash.com/IbLZjKcelpM/1020x858"><img src="https://source.unsplash.com/IbLZjKcelpM/1020x858"></a>
<a data-fancybox="gallery" data-caption="산이미지" href="https://source.unsplash.com/KgCbvOWYuU0/1279x870"><img src="https://source.unsplash.com/KgCbvOWYuU0/1279x870"></a>
</body>
</html>
-prefix-free
-prefix-free를 사용하면 어디에서나 접두사가없는 CSS 속성 만 사용할 수 있습니다.
https://leaverou.github.io/prefixfree/
gauge.js
그래프 라이브러리
http://bernii.github.io/gauge.js/
Bootstrap-select
https://developer.snapappointments.com/bootstrap-select/
Datepicker
데이터 테이블 라이브러리
https://vitalets.github.io/bootstrap-datepicker/
Summernote
글쓰기 라이브러리
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Summernote</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/summernote@0.8.18/dist/summernote.min.js"></script>
</head>
<body>
<div id="summernote"><p>Hello Summernote</p></div>
<script>
$(document).ready(function() {
$('#summernote').summernote();
});
</script>
</body>
</html>
Custom Content Scroller
사용자 스크롤 라이브러리
https://manos.malihu.gr/jquery-custom-content-scroller/
'Front > Library' 카테고리의 다른 글
GaugeMeter (0) | 2020.10.13 |
---|---|
무료 템플릿 사이트 (0) | 2020.10.13 |
css Animate (0) | 2020.09.22 |
원페이지 애니메이션 스크롤링 (onepage animation scroll) (0) | 2020.08.25 |
scrollUp jQuery plugin (0) | 2020.08.25 |