纯css实现优惠券效果
代码语言:html
所属分类:其他
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>BFW NEW PAGE</title> <style> .demo { width: 410px; margin: 0 auto; } .stamp * { padding: 0; margin: 0; list-style: none; font-family: "Microsoft YaHei", 'Source Code Pro', Menlo, Consolas, Monaco, monospace; } .stamp { width: 387px; height: 140px; padding: 0 10px; margin-bottom: 50px; position: relative; overflow: hidden; } .stamp:before { content: ''; position: absolute; top: 0; bottom: 0; left: 10px; right: 10px; z-index: -1; } .stamp i { position: absolute; left: 20%; top: 45px; height: 190px; width: 390px; background-color: rgba(255, 255, 255, .15); transform: rotate(-30deg); } .stamp .par { float: left; padding: 16px 15px; width: 220px; border-right: 2px dashed rgba(255, 255, 255, .3); text-align: left; } .stamp .par p { color: #fff; font-size: 16px; line-height: 21px; } .stamp .par span { font-size: 50px; color: #fff; margin-right: 5px; line-height: 65px; } .stamp .par .sign { font-size: 34px; } .stamp .par sub { position: relative; top: -5px; color: rgba(255, 255, 255, .8); } .stamp .copy { display: inline-block; padding: 21px 14px; width: 100px; vertical-align: text-bottom; font-size: 30px; color: rgb(255,255,255); text-align: center; line-height: initial; } .stamp .copy p { font-size: 16px; margin-top: 15px; } .stamp01 { background: radial-gradient(rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 5px, #F39B00 5px); background-size: 15px 15px; background-position: 9px 3px; } .stamp01:before { background-color: #F39B00; } .stamp0.........完整代码请登录后点击上方下载按钮下载查看
网友评论0