- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我早上大部分时间都在谷歌上搜索,试图为可编辑的组织结构图找到组织结构图解决方案,但几乎所有的搜索都让我回到了 this suggestion.。
现在,这样就好了;但是,当我尝试删除一个部门时,布局会被完全破坏,而尝试修复它既费时又让我感到困惑。我非常喜欢这种布局,我希望这是我需要的解决方案,但目前很难解决更改问题。
我也看过 D3JS,但对于我实际需要做的事情来说,它似乎有点过头了。我只需要几个节点,所以如果可能的话,我想要一个仅 HTML/CSS 的解决方案;但是,如果 JS 是我需要采取的路线,那也可以。
同样,我正在寻找响应式设计,到目前为止,除了 CodePen 示例似乎没有什么可以满足我的要求。
提前致谢。
/* HTML */
<div class="content">
<h1>Responsive Organization Chart</h1>
<figure class="org-chart cf">
<ul class="administration">
<li>
<ul class="director">
<li>
<a href="#"><span>Director</span></a>
<ul class="subdirector">
<li><a href="#"><span>Assistante Director</span></a></li>
</ul>
<ul class="departments cf">
<li><a href="#"><span>Administration</span></a></li>
<li class="department dep-a">
<a href="#"><span>Department A</span></a>
<ul class="sections">
<li class="section"><a href="#"><span>Section A1</span></a></li>
<li class="section"><a href="#"><span>Section A2</span></a></li>
<li class="section"><a href="#"><span>Section A3</span></a></li>
<li class="section"><a href="#"><span>Section A4</span></a></li>
<li class="section"><a href="#"><span>Section A5</span></a></li>
</ul>
</li>
<li class="department dep-b">
<a href="#"><span>Department B</span></a>
<ul class="sections">
<li class="section"><a href="#"><span>Section B1</span></a></li>
<li class="section"><a href="#"><span>Section B2</span></a></li>
<li class="section"><a href="#"><span>Section B3</span></a></li>
<li class="section"><a href="#"><span>Section B4</span></a></li>
</ul>
</li>
<li class="department dep-c">
<a href="#"><span>Department C</span></a>
<ul class="sections">
<li class="section"><a href="#"><span>Section C1</span></a></li>
<li class="section"><a href="#"><span>Section C2</span></a></li>
<li class="section"><a href="#"><span>Section C3</span></a></li>
<li class="section"><a href="#"><span>Section C4</span></a></li>
</ul>
</li>
<li class="department dep-d">
<a href="#"><span>Department D</span></a>
<ul class="sections">
<li class="section"><a href="#"><span>Section D1</span></a></li>
<li class="section"><a href="#"><span>Section D2</span></a></li>
<li class="section"><a href="#"><span>Section D3</span></a></li>
<li class="section"><a href="#"><span>Section D4</span></a></li>
<li class="section"><a href="#"><span>Section D5</span></a></li>
<li class="section"><a href="#"><span>Section D6</span></a></li>
</ul>
</li>
<li class="department dep-e">
<a href="#"><span>Department E</span></a>
<ul class="sections">
<li class="section"><a href="#"><span>Section E1</span></a></li>
<li class="section"><a href="#"><span>Section E2</span></a></li>
<li class="section"><a href="#"><span>Section E3</span></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</figure>
</div>
/* CSS */
*{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
position: relative;
}
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}
/**
* For IE 6/7 only
* Include this rule to trigger hasLayout and contain floats.
*/
.cf {
*zoom: 1;
}
/* Generic styling */
body{
background: #F5EEC9;
}
.content{
width: 100%;
max-width: 1142px;
margin: 0 auto;
padding: 0 20px;
}
a:focus{
outline: 2px dashed #f7f7f7;
}
@media all and (max-width: 767px){
.content{
padding: 0 20px;
}
}
ul{
padding: 0;
margin: 0;
list-style: none;
}
ul a{
display: block;
background: #ccc;
border: 4px solid #fff;
text-align: center;
overflow: hidden;
font-size: .7em;
text-decoration: none;
font-weight: bold;
color: #333;
height: 70px;
margin-bottom: -26px;
box-shadow: 4px 4px 9px -4px rgba(0,0,0,0.4);
-webkit-transition: all linear .1s;
-moz-transition: all linear .1s;
transition: all linear .1s;
}
@media all and (max-width: 767px){
ul a{
font-size: 1em;
}
}
ul a span{
top: 50%;
margin-top: -0.7em;
display: block;
}
/*
*/
.administration > li > a{
margin-bottom: 25px;
}
.director > li > a{
width: 50%;
margin: 0 auto 0px auto;
}
.subdirector:after{
content: "";
display: block;
width: 0;
height: 130px;
background: red;
border-left: 4px solid #fff;
left: 45.45%;
position: relative;
}
.subdirector,
.departments{
position: absolute;
width: 100%;
}
.subdirector > li:first-child,
.departments > li:first-child{
width: 18.59894921190893%;
height: 64px;
margin: 0 auto 92px auto;
padding-top: 25px;
border-bottom: 4px solid white;
z-index: 1;
}
.subdirector > li:first-child{
float: right;
right: 27.2%;
border-left: 4px solid white;
}
.departments > li:first-child{
float: left;
left: 27.2%;
border-right: 4px solid white;
}
.subdirector > li:first-child a,
.departments > li:first-child a{
width: 100%;
}
.subdirector > li:first-child a{
left: 25px;
}
@media all and (max-width: 767px){
.subdirector > li:first-child,
.departments > li:first-child{
width: 40%;
}
.subdirector > li:first-child{
right: 10%;
margin-right: 2px;
}
.subdirector:after{
left: 49.8%;
}
.departments > li:first-child{
left: 10%;
margin-left: 2px;
}
}
.departments > li:first-child a{
right: 25px;
}
.department:first-child,
.departments li:nth-child(2){
margin-left: 0;
clear: left;
}
.departments:after{
content: "";
display: block;
position: absolute;
width: 81.1%;
height: 22px;
border-top: 4px solid #fff;
border-right: 4px solid #fff;
border-left: 4px solid #fff;
margin: 0 auto;
top: 130px;
left: 9.1%
}
@media all and (max-width: 767px){
.departments:after{
border-right: none;
left: 0;
width: 49.8%;
}
}
@media all and (min-width: 768px){
.department:first-child:before,
.department:last-child:before{
border:none;
}
}
.department:before{
content: "";
display: block;
position: absolute;
width: 0;
height: 22px;
border-left: 4px solid white;
z-index: 1;
top: -22px;
left: 50%;
margin-left: -4px;
}
.department{
border-left: 4px solid #fff;
width: 18.59894921190893%;
float: left;
margin-left: 1.751313485113835%;
margin-bottom: 60px;
}
.lt-ie8 .department{
width: 18.25%;
}
@media all and (max-width: 767px){
.department{
float: none;
width: 100%;
margin-left: 0;
}
.department:before{
content: "";
display: block;
position: absolute;
width: 0;
height: 60px;
border-left: 4px solid white;
z-index: 1;
top: -60px;
left: 0%;
margin-left: -4px;
}
.department:nth-child(2):before{
display: none;
}
}
.department > a{
margin: 0 0 -26px -4px;
z-index: 1;
}
.department > a:hover{
height: 80px;
}
.department > ul{
margin-top: 0px;
margin-bottom: 0px;
}
.department li{
padding-left: 25px;
border-bottom: 4px solid #fff;
height: 80px;
}
.department li a{
background: #fff;
top: 48px;
position: absolute;
z-index: 1;
width: 90%;
height: 60px;
vertical-align: middle;
right: -1px;
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMjUiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
background-image: -moz-linear-gradient(-45deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 100%) !important;
background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%,rgba(0,0,0,0.25)), color-stop(100%,rgba(0,0,0,0)))!important;
background-image: -webkit-linear-gradient(-45deg, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 100%)!important;
background-image: -o-linear-gradient(-45deg, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 100%)!important;
background-image: -ms-linear-gradient(-45deg, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 100%)!important;
background-image: linear-gradient(135deg, rgba(0,0,0,0.25) 0%,rgba(0,0,0,0) 100%)!important;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#40000000', endColorstr='#00000000',GradientType=1 );
}
.department li a:hover{
box-shadow: 8px 8px 9px -4px rgba(0,0,0,0.1);
height: 80px;
width: 95%;
top: 39px;
background-image: none!important;
}
/* Department/ section colors */
.department.dep-a a{ background: #FFD600; }
.department.dep-b a{ background: #AAD4E7; }
.department.dep-c a{ background: #FDB0FD; }
.department.dep-d a{ background: #A3A2A2; }
.department.dep-e a{ background: #f0f0f0; }
最佳答案
你可以使用 Glorygram,一个 JS 开源库:
关于html - 响应迅速、易于编辑的组织结构图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32891626/
UI很难使用后台线程中的数据进行UI更新。我阅读了大量文档,但仍然缺少某些内容... func getData(){ DispatchQueue.global(qos: .background
我的应用程序中有一个.plist,可以保存重要数据。它分为以下层次结构: 列表项 根-字典 设置-字典 Setting1-数组 Setting2-数组 如何将数据写入3.1和3.2阵列?我只是将数据添
我必须为我的应用程序实现社交登录,例如facebook和google+。并且还需要使用Twitter实施社交登录。我想知道的是,是否可以使用swift 3为我的应用(如twitter和facebook
我是核心数据的新手,虽然它正在慢慢变得有意义,但当我保留“可选”时,我在加载初始数据库时遇到了问题>没有值的关系值(这不是选项的作用吗?)。下面的代码可以工作,但如果我省略了一些实例化和定义关系的情况
我在屏幕上有两个自定义 UIView。 UIViewOne 占屏幕的 75%,UIViewTwo 占 25%。我需要点击 UIViewTwo,调整它的大小,让第二个变大,先变小。我也知道这需要使用约束
假设我有一个游戏,一开始用户可以选择一些东西,比如名字、性别等,这会影响游戏的很多方面,比如用于渲染用户的 Sprite 和文本即显示。 所以每次我离开游戏的一个区域并进入一个新的区域时,我都应该根据
现在在我的应用中,用户可以发布图片,它会保存用户的当前位置和图片。在 TableView 中,我希望它查询距离用户区域 5-10 公里的图像。用户还将他们的地理位置保存在他们的个人资料中。 我知道有这
我一直在尝试找出如何获取用户数据数组并将其与其他用户数组列表进行比较以查看它是否与它们匹配。我看过答案 here这表明我应该构建我的数据,使其非规范化并因此具有重复项。这种方法有效,但我现在正在努力将
我有一个表格 View ,每个单元格中有一个按钮。当它被点击时,我有一个 didselectrow 功能。我想使用我的索引路径从给出单元格内容的数组中获取一个值。如何将此 NSIndexpath 转换
很多时候,当我运行项目时,模拟器窗口弹出的很小,周围没有 iphone。只是一个无法调整大小的小矩形。有人知道为什么会这样吗?看看下面的图片,看看它是什么样子。注意:它只是屏幕一部分的屏幕截图,因此它
当我在 iPad 上使用多任务测试我的应用程序并更改应用程序上的应用程序大小时, Collection View 单元格需要调整大小,否则它们将不适合 View 窗口。 我已经采取了一些措施比如 改变
你们知道如何设置 NSTextField 只接受数字(int)吗? 让我解释一下。我得到了我的 NSTextField: @IBOutlet weak var txtBoxField: NSText
let fontRef = CTFontCreateWithName("ArialMT", config.fontSize, nil); [kCTFontAttributeName : fontRef
有没有办法在 uialertview 中给一些特定的单词上色?我的意思是,我可以将 RED 标记为红色,同时将 GREEN 标记为绿色吗? 有人能带我走正确的路吗? 最佳答案 您可以使用 NSAttr
我使用地址簿框架导入数据并将联系人存储在核心数据中。该方法包含在 GCD 中,但 UI 没有响应,并且所有代码都在线程 1 上执行。我的代码有什么问题? func importContacts(){
我试图找到用户位置的纬度和经度,以便我可以在 viewdidload 中将 map 以用户为中心。 我已经实现了看似正确的代码,但 userLat(纬度)和 userLon(经度)的值有很大偏差。 注
我是一名优秀的程序员,十分优秀!