时间:2021-05-08
今天是618 ,各大商城都在搞促销活动,今天我们就来用css做一个商城卡卷,具体如下:
还在为上面这样格式各样的商城卡券的样式而发愁?CSS 不熟,canvas 太难,怎么办?
用 CSS 写一个商城卡券需要几步?
一共需要三步:
交给测试后,我们来分析下 CSS 卡券。
我们来准备一下基础知识
radial-gradien:
background: radial-gradient(shape size at position, start-color, ..., last-color); 值 描述 shape 确定圆的类型:
ellipse (默认): 指定椭圆形的径向渐变。 circle :指定圆形的径向渐变 size 定义渐变的大小 position 定义渐变的位置
这样,我们能很容易写出一个居中的圆形背景图
.center-circle { width: 100px; height: 100px; background: radial-gradient(circle at 50px 50px, transparent 10px, #00adb5 0); }linear-gradient
background: linear-gradient(direction, color-stop1, color-stop2, ...);值 描述 direction 用角度值指定渐变的方向(或角度) color-stop1, color-stop2,... 用于指定渐变的起止颜色
我们不需要知道具体的渐变过程,只要写一个简单的,写一个使用渐变属性而不渐变背景图即可:
.linear-gradient { width: 100px; height: 100px; background: linear-gradient(to right, #00adb5, #00adb5); }background
background 是可以设置多个图片的,遵循 background: [background-color] [background-image] [background-repeat] [background-attachment] [background-position] / [ background-size] [background-origin] [background-clip]; 使用 , 隔开即可。
开始组合基础知识
写一个最简单的
只要把上述中心圆示例的圆形位置定位在左侧即可
.left-circle{ width: 100px; height: 100px; position: relative; background: radial-gradient(circle at 0 50px, transparent 10px, #00adb5 0) top left/100px 100% no-repeat;}进一步学习
你可还记得 background 是有 repeat 属性吗?也就是说我们只要设置一部分样式,再使用 repeat 即可,看下图片,这不就是一个不渐变的 linear-gradient 和 radial-gradient 的组合吗,再借助伪类,我们即可写出来了。
.hollow-circles { width: 300px; height: 100px; position: relative; background: #00adb5; margin-bottom: 10px;}.hollow-circles::after { content: ''; position: absolute; height: 5px; width:100%; left: 0; bottom: -5px; background-image: linear-gradient(to right, #00adb5 5px, transparent 5px, transparent), radial-gradient(10px circle at 10px 5px, transparent 5px, #00adb5 5px); background-size: 15px 5px;}复杂一点
看见很简单,不就是刚才那个圆再画一个吗,但是要考虑到两侧的颜色是不同的,所以我们需要画四个背景图才行,将每个圆定位在方形的各个角落,然后组合在一起即可。
.two-circles { width: 300px; height: 100px; background: radial-gradient(circle at right top, transparent 10px, #00adb5 0) top left / 60px 51% no-repeat, radial-gradient(circle at right bottom, transparent 10px, #00adb5 0) bottom left /60px 51% no-repeat, radial-gradient(circle at left top, transparent 10px, #eeeeee 0) top right /240px 51% no-repeat, radial-gradient(circle at left bottom, transparent 10px, #eeeeee 0) bottom right /240px 51% no-repeat;}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
第一步:privatePopupWindowmPopupWindow;第二步:写一个popupwindow的布局文件XML第三步:在Activity写代码pub
第一步:需要掌握css的缩写技巧参考下面的文章即可CSS缩写优化CSS文件的体积CSS常用属性缩写实例[推荐]第二步:用css在线格式化与压缩工具第三步:测试,
第三步:点击创建,设置完成。三、拼多多店铺优惠专区FAQ1、店铺优惠专区的商品还可以用优惠券吗?同属于店铺优惠,商家设置的所有优惠券,包括单品券和店铺券,都不会
第一步:进入商家营销中心——选择店铺优惠券——点击创建。第二步:设置优惠券的条件,选择阿里妈妈推广券,点击保存。第三步:选择报名活动的优惠券(系统会同步您店铺设
怎么打造爆款?如何打造爆款?一个爆款要多久才能做起来?这是很多卖家会问的一个问题。实际上,淘宝店铺运营分三步:第一步,选品;第二步,打基础;第三步,开始推广做爆