CSS 实现尖角样式

2023-10-18 09:50

本文主要是介绍CSS 实现尖角样式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

CSS 实现尖角样式

实现思路

实现一个CSS的尖角样式 ,思路为 用两个尖角,我是用的是一个before一个div、将其放到指定的位置,一个小一点作为尖角另外一个大一点作为尖角的border。然后使用position定位以及负的margin将其定位上去即可代码如下。

实现代码

<!DOCTYPE html>
<html>
<head><title></title><meta charset="utf-8"><style type="text/css">body { /*  清除选择的颜色 */-moz-user-select: none; /*火狐*/-webkit-user-select: none; /*webkit浏览器*/-ms-user-select: none; user-select: none;}.drop-list-btn{background:#41464b;box-shadow:0 4px 12px 0 rgba(0,0,0,0.20);border-radius:2px;width:168px;height:56px;margin: 0 auto;cursor: pointer;}.drop-list-btn span{font-family:PingFangSC-Medium;font-size:24px;color:#ffffff;letter-spacing:0;line-height:24px;text-align:center;display: inline-block;position: relative;left: 50%;top: 50%;transform: translate(-50%,-50%);height: 30px;}.drop-list{margin: 0 auto;background:#ffffff;border:1px solid #dddddd;box-shadow:0 4px 12px 0 rgba(0,0,0,0.10);border-radius:2px;width:249px;height:319px;}.drop-list-item{width:249px;height:64px;}.drop-list-item:hover{background:#f5f5f5;}.drop-list-item div{height: 100%;float: left;}.drop-list-item div:nth-child(1){width: 41px;}.drop-list-item div:nth-child(2){width: 40px;background: url(icons/docs@2x.png) no-repeat content-box center;}.drop-list-item div:nth-child(3){width: 23px;}.drop-list-item div:nth-child(4){font-family:PingFangSC-Regular;font-size:24px;color:#666666;letter-spacing:0;line-height:24px;text-align:left;width: 96px;}.drop-list-item div:nth-child(4) span{display: inline-block;top: 50%;transform: translateY(-50%);position: relative;}.drop-list::before {border-right: 13px solid transparent;border-bottom: 13px solid rgba(0,0,0,0.1);width: 0px;border-left: 13px solid transparent;content: '';margin-top: -13px;position: relative;top: -36px;  left: 119px;}.drop-list-triangle{ /*外面的三角形 底色用before*/border-right:12px solid transparent;border-bottom:12px solid white;width: 0px;border-left:12px solid transparent;margin-top:-12px;position: relative;left: 119.5px;top: -22px;}</style>
</head>
<body><div class="drop-list-btn"><span>新建</span> </div><div class="drop-list" style="margin-top: 20px;"><div class="drop-list-triangle"  ></div><div class="drop-list-item" ><div ></div><div ></div><div ></div><div ><span >文档</span></div></div><div class="drop-list-item" ><div ></div><div style="background: url(icons/chart@2x.png) no-repeat content-box center;"></div><div ></div><div ><span >表格</span></div></div><div class="drop-list-item" ><div ></div><div style="background: url(icons/folder@2x.png) no-repeat content-box center;"></div><div ></div><div><span >文件夹</span></div></div><div  style="width:249px;height: 3px;margin: 8px 0px;"><div style="border:1px solid #dddddd;width:190px;height:1px;position: relative;margin: 0 auto;"></div></div><div class="drop-list-item"><div ></div><div style="background: url(icons/upload@2x.png) no-repeat content-box center;"></div><div ></div><div ><span >导入</span></div></div></div><script type="text/javascript">document.getElementsByClassName("drop-list-btn")[0].onclick = function (evt) {var ele = document.getElementsByClassName("drop-list")[0];if (ele.style.display=="none"){ele.style.display="block";}else{ele.style.display="none";}}
</script>
</body>
</html>

效果如下:

这篇关于CSS 实现尖角样式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/231785

相关文章

使用Python实现一个优雅的异步定时器

《使用Python实现一个优雅的异步定时器》在Python中实现定时器功能是一个常见需求,尤其是在需要周期性执行任务的场景下,本文给大家介绍了基于asyncio和threading模块,可扩展的异步定... 目录需求背景代码1. 单例事件循环的实现2. 事件循环的运行与关闭3. 定时器核心逻辑4. 启动与停

基于Python实现读取嵌套压缩包下文件的方法

《基于Python实现读取嵌套压缩包下文件的方法》工作中遇到的问题,需要用Python实现嵌套压缩包下文件读取,本文给大家介绍了详细的解决方法,并有相关的代码示例供大家参考,需要的朋友可以参考下... 目录思路完整代码代码优化思路打开外层zip压缩包并遍历文件:使用with zipfile.ZipFil

Python实现word文档内容智能提取以及合成

《Python实现word文档内容智能提取以及合成》这篇文章主要为大家详细介绍了如何使用Python实现从10个左右的docx文档中抽取内容,再调整语言风格后生成新的文档,感兴趣的小伙伴可以了解一下... 目录核心思路技术路径实现步骤阶段一:准备工作阶段二:内容提取 (python 脚本)阶段三:语言风格调

C#实现将Excel表格转换为图片(JPG/ PNG)

《C#实现将Excel表格转换为图片(JPG/PNG)》Excel表格可能会因为不同设备或字体缺失等问题,导致格式错乱或数据显示异常,转换为图片后,能确保数据的排版等保持一致,下面我们看看如何使用C... 目录通过C# 转换Excel工作表到图片通过C# 转换指定单元格区域到图片知识扩展C# 将 Excel

Vue3组件中getCurrentInstance()获取App实例,但是返回null的解决方案

《Vue3组件中getCurrentInstance()获取App实例,但是返回null的解决方案》:本文主要介绍Vue3组件中getCurrentInstance()获取App实例,但是返回nu... 目录vue3组件中getCurrentInstajavascriptnce()获取App实例,但是返回n

基于Java实现回调监听工具类

《基于Java实现回调监听工具类》这篇文章主要为大家详细介绍了如何基于Java实现一个回调监听工具类,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录监听接口类 Listenable实际用法打印结果首先,会用到 函数式接口 Consumer, 通过这个可以解耦回调方法,下面先写一个

使用Java将DOCX文档解析为Markdown文档的代码实现

《使用Java将DOCX文档解析为Markdown文档的代码实现》在现代文档处理中,Markdown(MD)因其简洁的语法和良好的可读性,逐渐成为开发者、技术写作者和内容创作者的首选格式,然而,许多文... 目录引言1. 工具和库介绍2. 安装依赖库3. 使用Apache POI解析DOCX文档4. 将解析

Qt中QGroupBox控件的实现

《Qt中QGroupBox控件的实现》QGroupBox是Qt框架中一个非常有用的控件,它主要用于组织和管理一组相关的控件,本文主要介绍了Qt中QGroupBox控件的实现,具有一定的参考价值,感兴趣... 目录引言一、基本属性二、常用方法2.1 构造函数 2.2 设置标题2.3 设置复选框模式2.4 是否

C++使用printf语句实现进制转换的示例代码

《C++使用printf语句实现进制转换的示例代码》在C语言中,printf函数可以直接实现部分进制转换功能,通过格式说明符(formatspecifier)快速输出不同进制的数值,下面给大家分享C+... 目录一、printf 原生支持的进制转换1. 十进制、八进制、十六进制转换2. 显示进制前缀3. 指

springboot整合阿里云百炼DeepSeek实现sse流式打印的操作方法

《springboot整合阿里云百炼DeepSeek实现sse流式打印的操作方法》:本文主要介绍springboot整合阿里云百炼DeepSeek实现sse流式打印,本文给大家介绍的非常详细,对大... 目录1.开通阿里云百炼,获取到key2.新建SpringBoot项目3.工具类4.启动类5.测试类6.测