

用 CSS 写一个商城卡券需要几步
source link: https://juejin.im/post/5d07c2476fb9a07ed524a08d
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

用 CSS 写一个商城卡券需要几步
还在为上面这样格式各样的商城卡券的样式而发愁?CSS 不熟,canvas 太难,怎么办?
用 CSS 写一个商城卡券需要几步?
一共需要三步:
交给测试后,我们来分析下 CSS 卡券。
我们来准备一下基础知识
radial-gradient
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;
}
复制代码
当我们看到一个新东西时,不要抵触,试着去分析一下,有可能他只是我们以前所学的变体而已,仅仅是对我们已有知识的重新组合和适当改造,当我们搞定了的时候,也许才发现,这也不过如此,然而倘若当初怀着抵触拒绝,却只能是一点进步没有了。
最后的最后,这个网址欢迎 star ~,更欢迎 issue ~。
Recommend
-
8
发表一篇假研究,一共需要几步?本文来自微信公众号:科研圈(ID:keyanquan),作者:李姗珊,编辑:魏潇,头图来自:unsplash美剧剧本改编的研究今年四月,毕业于美...
-
11
做第一批35岁就退休的90后,需要几步?后浪研究所 · 2小时前财务独立,提早退休编者按:本文来自微信公众号
-
4
扳倒暴雪需要几步?本文来自微信公众号:财经无忌(ID:caijwj),作者:鹿鸣,头图来自:视觉中国又是一年春天,4月15日,动视暴雪(ATVI.US)与B站电竞公布了双方数年的战...
-
11
NFT to the moon,还需要几步? 猎云财经 原创 2021-06-11 01:44 热度 242701 分享 微信扫一扫:分享 ...
-
12
“七夕享真爱,晒单更免单”,国美推出卡券服务门户国美“折上折 APP” 2...
-
4
攻击者危害关键资产需要几步? 责任编辑:cres 作者:D1net编译 | 2022-04-12 13:28:20 原创文章 企业网D1Net XM Cyber的研究团队发布的报告中的调查结果涵盖了对2021年全年近200万个终端、文...
-
6
招聘本质是要解决人与岗位的精准连接和匹配,“人才吸引”环节一直是企业招聘策略的核心。据《2021中国企业招聘科技趋势报告》和北森
-
5
INAV固件安装GPS只需要几步就可以了,这是我的经验总结 By: ...
-
7
搭建用户搜索指标体系,拢共需要几步? 一个数据人的自留地 2023-02-13 0 评论...
-
9
45+经常线上消费群体占比近半,权益卡券需求显现 作者:FYQ 发布时间: 2023-05-18 10:50
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK