こんにちは、テキストをjQueryでスライダダウンするにはどうすればよいですか?
ユーザーが特定のdivをマウスオーバーすると、slideDownエフェクトを作成しようとしていますが、ユーザーがdivをマウスオーバーするときに戻ってきます。コードがBootstrap4で書いていたことに注意してください。違いがあれば分かりません。
$(document).ready(function() {
'use strict';
$("p.card-text").on("mouseover", function() {
$(this).slideDown();
});
$("p.card-text").on("mouseout", function() {
$(this).slideUp();
});
});
<div class="card">
<a href="http://www.castro4designs.com" target="_blank"><img src="img/home.png" height="240" width="356" alt="4Design Home Page"></a>
<p class="card-text">Castro4design.com was my first official website which was done for my 'Intro to New Media Tech' class. The site consist of basic HTML and CSS. The site was to keep track of all our work throughout our college career.</p>
</div>