css ve html ile tek sayfa web sitesi yapmak part 2


.js İÇERİĞİ


$(document).ready(function(){
$(‘.down’).click(function(e){
var linkHref = $(this).attr(‘href’);
$(‘html, body’).animate({
scrollTop: $(linkHref).offset().top
}, 2000);
e.preventDefault();
});
});

.html İÇERİĞİ

script type=”text/javascript” src=”https://code.jquery.com/jquery-3.2.1.min.js”>

script type=”text/javascript” src=”site.js”>

Yorumlar

Yorum Gönder