当前位置:首页技术资源网站周边网站首页彩色文字广告美化教程:打造吸睛的 tp-ad-text1 元素文字流效果

网站首页彩色文字广告美化教程:打造吸睛的 tp-ad-text1 元素文字流效果

想让网站首页的文字广告摆脱单调平淡的印象?

本教程将聚焦 tp-ad-text1 元素,教你通过创意 CSS 样式与动态效果,打造色彩丰富、流动感强的文字广告,让关键信息瞬间抓住访客眼球,提升广告吸引力与点击转化。


这是【彩色文字广告tp-ad-text1元素的样式代码】(用于首页自适应文字流广告)

如你站点合作站长比较多,可使用首页tp-ad-text1元素样式文字流广告代码美化版!

支持以下参数【如果有其它疑问,请联系客服咨询】qq:865165506

这段代码设置了一个类名为”tp-ad-text1″的元素的样式。其中,该元素的宽度为1980像素,上边距为6像素,盒模型为border-box,超出部分隐藏,水平居中对齐,背景颜色为半透明白色。

使用教程:

该元素内部的a标签的样式设置如下:字体颜色为#7fba00(一种绿色),字体大小为13像素,行高为22像素,居中对齐,边框为虚线,颜色为半透明黑色,内边距为0 3px,盒模型为border-box,浮动在左侧,宽度为216像素,高度为23像素,超出部分隐藏,超出部分显示省略号,不换行,外边距为0 3px 2px,文本无下划线,过渡效果为0.6秒,字体加粗。

部分css展示!

.tp-ad-text1 a:hover {font-weight: bold;color:#fff!important;background:#7fba00;transition: all .6s;}
.tp-ad-text1 a:nth-child(2n) {color:#f74e1e;}
.tp-ad-text1 a:nth-child(2n):hover {background:#f74e1e;border-color: #f74e1e;}
.tp-ad-text1 a:nth-child(3n) {color:#00a4ef;}
.tp-ad-text1 a:nth-child(3n):hover {background:#00a4ef;border-color: #00a4ef;}
.tp-ad-text1 a:nth-child(4n) {color:#0517c2;}
.tp-ad-text1 a:nth-child(4n):hover {background:#0517c2;border-color: #0517c2;}
.tp-ad-text1 a:nth-child(5n) {color:#601165;}
.tp-ad-text1 a:nth-child(5n):hover {background:#601165;border-color: #601165;}
.tp-ad-text1 a:nth-child(6n) {color:#0e7168;}
.tp-ad-text1 a:nth-child(6n):hover {background:#0e7168;border-color: #0e7168;}
.tp-ad-text1 a:nth-child(7n) {color:#762790;}
.tp-ad-text1 a:nth-child(7n):hover {background:#762790;border-color: #762790;}
.tp-ad-text1 a:nth-child(8n) {color:#f78005;}
.tp-ad-text1 a:nth-child(8n):hover {background:#f78005;border-color: #f78005;}
.tp-ad-text1 a:nth-child(9n) {color:#272d39;}
.tp-ad-text1 a:nth-child(9n):hover {background:#272d39;border-color: #272d39;}
.tp-ad-text1 a:nth-child(10n) {color:#bb1fef;}
.tp-ad-text1 a:nth-child(10n):hover {background:#bb1fef;border-color: #bb1fef;}
.tp-ad-text1 a:nth-child(11n) {color:#f74e1e;}
.tp-ad-text1 a:nth-child(11n):hover {background:#f74e1e;border-color: #f74e1e;}
.tp-ad-text1 a:nth-child(12n) {color:#0e7168;}
.tp

CSS代码样式:

/* 首页广告位*/
.tp-ad-text1 {
width: 1980px;  /* 【可修改】*/
padding-top: 6px;      /* 【可修改】*/
box-sizing: border-box;
overflow: hidden;
margin: 0 auto ;
background: rgba(255, 255, 255, .2);
}
.tp-ad-text1 a {
color: #7fba00;
font-size: 16px;
line-height: 28px;
text-align: center;
border: 1px dashed rgba(0, 0, 0, .2);
padding: 0 3px;
box-sizing: border-box;
float: left;
width: 160px;      /* 【可修改】*/
height: 23px;        /* 【可修改】*/
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin: 0 3px 2px;
text-decoration: none;
transition: all .6s;
font-weight: bold;
}
.tp-ad-text1 a:hover {font-weight: bold;color:#fff!important;background:#7fba00;transition: all .6s;}
.tp-ad-text1 a:nth-child(2n) {color:#f74e1e;}
.tp-ad-text1 a:nth-child(2n):hover {background:#f74e1e;border-color: #f74e1e;}
.tp-ad-text1 a:nth-child(3n) {color:#00a4ef;}
.tp-ad-text1 a:nth-child(3n):hover {background:#00a4ef;border-color: #00a4ef;}
.tp-ad-text1 a:nth-child(4n) {color:#0517c2;}
.tp-ad-text1 a:nth-child(4n):hover {background:#0517c2;border-color: #0517c2;}
.tp-ad-text1 a:nth-child(5n) {color:#601165;}
.tp-ad-text1 a:nth-child(5n):hover {background:#601165;border-color: #601165;}
.tp-ad-text1 a:nth-child(6n) {color:#0e7168;}
.tp-ad-text1 a:nth-child(6n):hover {background:#0e7168;border-color: #0e7168;}
.tp-ad-text1 a:nth-child(7n) {color:#762790;}
.tp-ad-text1 a:nth-child(7n):hover {background:#762790;border-color: #762790;}
.tp-ad-text1 a:nth-child(8n) {color:#f78005;}
.tp-ad-text1 a:nth-child(8n):hover {background:#f78005;border-color: #f78005;}
.tp-ad-text1 a:nth-child(9n) {color:#272d39;}
.tp-ad-text1 a:nth-child(9n):hover {background:#272d39;border-color: #272d39;}
.tp-ad-text1 a:nth-child(10n) {color:#bb1fef;}
.tp-ad-text1 a:nth-child(10n):hover {background:#bb1fef;border-color: #bb1fef;}
.tp-ad-text1 a:nth-child(11n) {color:#f74e1e;}
.tp-ad-text1 a:nth-child(11n):hover {background:#f74e1e;border-color: #f74e1e;}
.tp-ad-text1 a:nth-child(12n) {color:#0e7168;}
.tp

HTML代码展示:

<div class=”tp-ad-text1″>            /* 【修改URL和文字即可】*/
<a href=”广告URL” rel=”” target=”_blank”>每天免费领4-66元外卖红包</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
<a href=”广告URL” rel=”” target=”_blank”>广告出租招租</a>
</div>

温馨提示:

文章标题:网站首页彩色文字广告美化教程:打造吸睛的 tp-ad-text1 元素文字流效果

文章链接:https://www.xueitceo.com/512.html

更新时间:2025年08月20日

本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至: iying168@163.com我们将第一时间处理!

资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。

所有资源仅限于参考和学习,版权归原作者所有,更多请阅读六八联盟网络服务协议

本站大部分内容均收集于网络!若内容若侵犯到您的权益,请发送邮件至: iying168@163.com我们将第一时间处理! 资源所需价格并非资源售卖价格,是收集、整理、编辑详情以及本站运营的适当补贴,并且本站不提供任何免费技术支持。 所有资源仅限于参考和学习,版权归原作者所有,更多请阅读六八联盟网络服务协议

给TA打赏
共{{data.count}}人
人已打赏
网站周边

50万同义词替换库,txt格式,-火车头采集伪原创词库!

2025-8-17 20:20:25

软件工具

易语言V5.93免安装版本-易语言5.93完全版下载!

2024-5-24 11:27:58

个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索