服务热线
1888888888
作者:文煞发布时间:2023-08-15分类:站长笔记浏览:416
现在很多网站都采用了一种效果,就是在展示长篇文章时,只显示部分内容,并在底部加上一个“展开”按钮,点击后可以展示全部内容。这种效果可以很好地提高用户体验和阅读效果。下面我将介绍一种制作这种效果的方法。
<div class="LookMore">展开全部</div>
.LookMore { width: 140px; margin: 20px auto; height: 34px; line-height: 32px; text-align: center; border-radius: 15px; border: 1px solid #c7d1d6; background-color: #eee; color: #4dba50; }
<div class="gradient"></div>
.gradient { background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), to(#fff)); background-image: -webkit-linear-gradient(top, rgba(255,255,255,0), #fff); background-image: linear-gradient(-180deg, rgba(255,255,255,0), #fff); height: 140px; position: absolute; left: 0; bottom: 0; width: 100%; }
$(".LookMore").click(function() { $(".xwz-con-buzou").css("height", "auto"); $(".LookMore, .gradient").css("display", "none"); });
通过以上几个步骤,你就可以在自己的网站上实现文章渐隐和点击展开按钮的效果了。
分享:
支付宝
微信