只需一個(gè)簡(jiǎn)單的 CSS 和 jQuery 函數(shù)即可輕松刪除類時(shí)的轉(zhuǎn)換。我也嘗試過(guò)使用 Jquery,但似乎沒有任何效果。經(jīng)過(guò)至少十幾次嘗試,有什么想法嗎?jQuery$(document).ready(function(){$(document).on('click', '.review-block', function(){ $(this).find(".review-body").toggleClass('small'); }); });CSS.review-body{ padding-right: 8px; padding-left: 8px; padding-top: 5px; font-family: sans-serif; font-size: 15px; margin-bottom: 10px; overflow: hidden; transition: all 1s ease;}.small{ max-height: 125px;}超文本標(biāo)記語(yǔ)言<div class="review-body small"> //TEXT HERE</div>
切換 HTML 元素類的大小時(shí),過(guò)渡屬性不起作用?
當(dāng)年話下
2023-10-30 21:01:53