CSS三角形广告文字_html/css_WEB-ITnose
程序员文章站
2022-03-26 07:53:15
...
街上经常碰到一些发各类广告传单的,有一次收到一张房地产广告的传单,顺手留下来,看着里面有些广告挺吸引人,同时也想练练自己css技术,故抽空做了一下。
原图某区域如下:
实现上图效果是需要一些想象力的,比如三角形的构成和左右两边的空白间距,懂的这个原理,然后熟练运用border属性,一切就OK了
比如其中一个三角形
div.arrow_ltitle1 { width: 0; height: 0; border-top: 35px solid white; border-bottom: 35px solid white; border-left: 25px solid #68C339;}
HTML代码如下:
低容积率仅2.8同样的地块,那里建了10栋楼,这里仅仅7栋,居住舒适度你懂得!低建筑密度仅23.51%最大栋距达到近200米,视觉空间超乎想象!建材用的贵品质有保障含钢量超出市场同类产品约30%,品质有保障,给您一个五星级的家。临江瞰岛官佛远离噪音污染,与佛相伴修生养性;上风上水财运滚滚!贴近自然畅想都市慢生活太阳岛一墙之隔,大佛景区近在咫尺,远离都市尾气生活!买房装修一步到位四川家装连锁品牌芙蓉锦城提供多种精装套餐服务,实体样板呈现,恭迎品鉴
CSS样式如下:
body{font-family: 微软雅黑; padding:0; margin:0px auto; width:700px; }.fl{float: left;}.fr{float: right;}.empty10{ height:20px; clear:both}.shadow{-moz-box-shadow: 0 0 20px #777676;box-shadow: 0 0 20px #777676; padding: 5px; background: white;}.arrow_shadow{-moz-box-shadow: 5px 5px 10px #B7B7B7; box-shadow: 5px 5px 10px #B7B7B7;}/*第1个广告样式*/div.arrow_ltitle1{width: 0; height: 0;border-top: 35px solid white;border-bottom: 35px solid white; border-left: 25px solid #68C339;}div.arrow_rtitle1{ position: relative; width: 0;height: 0; border-top: 35px solid #68C339; border-right: 210px solid #68C339; border-bottom: 35px solid #68C339; border-left: 25px solid white;}div.arrow_lcontent1{text-align: center; width: 80px; height: 70px;background: #68C339;color: white;font-size: 15px;}div.arrow_rcontent1{color: white;position: absolute;left: 10px;top: -30px;width: 180px;font-size: 15px;}/*第2个广告样式*/div.arrow_ltitle2{width: 0; height: 0;border-top: 35px solid white;border-bottom: 35px solid white; border-left: 25px solid #E2B32E;}div.arrow_rtitle2{ position: relative; width: 0;height: 0; border-top: 35px solid #E2B32E; border-right: 210px solid #E2B32E; border-bottom: 35px solid #E2B32E; border-left: 25px solid white;}div.arrow_lcontent2{text-align: center; width: 80px; height: 70px;background: #E2B32E;color: white;font-size: 15px;}div.arrow_rcontent2{color: white;position: absolute;left: 10px;top: -30px;width: 180px;font-size: 15px;}/*第3个广告样式*/div.arrow_ltitle3{width: 0; height: 0;border-top: 35px solid white;border-bottom: 35px solid white; border-left: 25px solid #4381CE;}div.arrow_rtitle3{ position: relative; width: 0;height: 0; border-top: 35px solid #4381CE; border-right: 210px solid #4381CE; border-bottom: 35px solid #4381CE; border-left: 25px solid white;}div.arrow_lcontent3{text-align: center; width: 80px; height: 70px;background: #4381CE;color: white;font-size: 15px;}div.arrow_rcontent3{color: white;position: absolute;left: 10px;top: -30px;width: 180px;font-size: 15px;}/*第4个广告样式*/div.arrow_ltitle4{width: 0; height: 0;border-top: 35px solid white;border-bottom: 35px solid white; border-left: 25px solid #9C2E8F;}div.arrow_rtitle4{ position: relative; width: 0;height: 0; border-top: 35px solid #9C2E8F; border-right: 210px solid #9C2E8F; border-bottom: 35px solid #9C2E8F; border-left: 25px solid white;}div.arrow_lcontent4{text-align: center; width: 80px; height: 70px;background: #9C2E8F;color: white;font-size: 15px;}div.arrow_rcontent4{color: white;position: absolute;left: 10px;top: -30px;width: 180px;font-size: 15px;}/*第5个广告样式*/div.arrow_ltitle5{width: 0; height: 0;border-top: 35px solid white;border-bottom: 35px solid white; border-left: 25px solid #403D6F;}div.arrow_rtitle5{ position: relative; width: 0;height: 0; border-top: 35px solid #403D6F; border-right: 210px solid #403D6F; border-bottom: 35px solid #403D6F; border-left: 25px solid white;}div.arrow_lcontent5{text-align: center; width: 80px; height: 70px;background: #403D6F;color: white;font-size: 15px;}div.arrow_rcontent5{color: white;position: absolute;left: 10px;top: -30px;width: 180px;font-size: 15px;}/*第6个广告样式*/div.arrow_ltitle6{width: 0; height: 0;border-top: 35px solid white;border-bottom: 35px solid white; border-left: 25px solid #EA6F05;}div.arrow_rtitle6{ position: relative; width: 0;height: 0; border-top: 35px solid #EA6F05; border-right: 210px solid #EA6F05; border-bottom: 35px solid #EA6F05; border-left: 25px solid white;}div.arrow_lcontent6{text-align: center; width: 80px; height: 70px;background: #EA6F05;color: white;font-size: 15px;}div.arrow_rcontent6{color: white;position: absolute;left: 10px;top: -30px;width: 180px;font-size: 15px;}
推荐阅读
-
使用css创建三角形 使用CSS3创建3d四面体原理及代码(html5实践)
-
html5配合css3实现带提示文字的输入框(摆脱js)
-
HTML5/CSS3(PrefixFree.js) 3D文字特效
-
HTML,CSS,font-family中文字体的英文名称总览
-
在HTML5中如何使用CSS建立不可选的文字
-
JS+CSS+HTML实现“代码雨”类似黑客帝国文字下落效果
-
HTML,CSS,font-family:中文字体的英文名称 (宋体 微软雅黑)
-
html css设置ul li标签中的中文文字自动换行
-
html5新增、css3动画、导航条、文字轮播和旋转木马
-
html div内第二行文字显示不下的时候才用省略号代替 css实现