如何使用CSS写一个商城卡券

发布时间:2021-08-03 10:22:24 作者:小新
来源:亿速云 阅读:142

这篇文章主要介绍如何使用CSS写一个商城卡券,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

具体如下:

如何使用CSS写一个商城卡券 

如何使用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]; 使用 , 隔开即可。

开始组合基础知识

写一个最简单的

如何使用CSS写一个商城卡券

只要把上述中心圆示例的圆形位置定位在左侧即可

.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;
}

进一步学习

如何使用CSS写一个商城卡券

你可还记得 background 是有 repeat 属性吗?也就是说我们只要设置一部分样式,再使用 repeat 即可,看下图片,这不就是一个不渐变的 linear-gradientradial-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;
}

复杂一点

如何使用CSS写一个商城卡券

看见很简单,不就是刚才那个圆再画一个吗,但是要考虑到两侧的颜色是不同的,所以我们需要画四个背景图才行,将每个圆定位在方形的各个角落,然后组合在一起即可。

.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;
}

以上是“如何使用CSS写一个商城卡券”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注亿速云行业资讯频道!

推荐阅读:
  1. css如何写
  2. 微信小程序与公众号卡券/会员打通的问题

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

css

上一篇:css3如何实现边框

下一篇:如何解决某些HTML字符打不出来的问题

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》