Shave.js Nedir?
Herkese merhaba,
Bu yazıda Shave.js‘nin ne olduğundan bahsedeceğim.
Shave.js yazıları belirli bir noktadan kesmek için kullanılan bir javascript kütüphanesidir. Metin yerinden tasarruf etmek için kullanılır.
Bu kütüphane fonksiyonu yalnızca iki parametre alarak çalışır. Bir element seçici(element selector) ve bu element için bir maksimum yükseklik(max height)tir.
Aşağıdaki kod yardımıyla siz de bu kütüphaneyi rahatlıkla kullanabilirsiniz.
HTML Kodu
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shave.js Nedir?</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/shave/5.0.0/shave.min.js"></script>
</head>
<body>
<p id="metin">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
</p>
<button id="tikla">Daralt</button>
</body>
</html>
CSS Kodu
p{
width:500px;
border-style: solid;
border-width: 5px;
padding:5px;
border-color:red;
}
button {
background-color: #008CBA;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
JAVASCRIPT Kodu
jQuery(document).ready(function($){
$('#tikla').on('click',function(){
if($(this).attr('data-click-state') == 1) {
$(this).attr('data-click-state', 0);
$(this).text("Genişlet");
shave('#metin', 60);
}
else {
$(this).attr('data-click-state', 1);
$(this).text("Daralt");
shave('#metin', 300);
}
});
});
Sitenizde kullanmak için linkini ziyaret ederek, kendinize göre revizeler yapabilirsiniz.
Kullanımı ile ilgili daha fazla detay için linkini ziyaret ederek detaylı kullanabilirsiniz.
Herkese çalışma hayatında ve yaşamında başarılar kolaylıklar.