学习Discuz! X3.2记录:对幻灯播放的进一步修改,包括css,代码


    DIY论坛首页模块属性,缩略图宽度为600,高度为450,所以提交帖子图片时候,把图片设置为这么大。


    编辑前面的模块模板“DIY幻灯片BY_CBQ”代码为:

<div class="module cl slidebox">
	<ul class="slideshow">
		[loop]
			<li style="width: {picwidth}px; height: {picheight}px;"><a href="{url}"{target}><img src="{pic}" width="{picwidth}" height="{picheight}" /></a><span class="title">{title}</span></li>
		[/loop]
	</ul>
</div>
<script type="text/javascript">
	runslideshow();
</script>


    修改template\cbqtest\common\extend_common.css中/* 幻灯片 */部分:

/* 幻灯片 */

 .slideblock { position: relative; border:#000000 solid thin; }
	.slideshow { clear: both; }
		.slideshow li { float:left; position: relative; overflow: hidden; }
			.slideshow span.title { position:absolute; top:330px; left:15px; width: 100%; height: 32px; line-height: 32px; font-size: 14px; text-indent: 10px; }
			.slideshow span.title, .slidebar li { background: rgba(0, 0, 0, 0.3); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = #30000000, endColorstr = #30000000); color: {LIGHTLINK}; overflow: hidden; }
			
			.slidebar li { margin-top:360px; margin-left:10px; margin-right: 1px; width: 70px; height: 70px; line-height: 70px; text-align: center; font-size: 30px; cursor: pointer; }
				.slidebar li.on { background: rgba(255, 255, 255, 0.5); filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = #50FFFFFF, endColorstr = #50FFFFFF); color: #000; font-weight: 700; }

    最后幻灯效果是:

学习Discuz! X3.2记录:对幻灯播放的进一步修改,包括css,代码_第1张图片






你可能感兴趣的:(discuz,diy,x3.2)