"test breadcrumbs (no bootstrap here)"
Bootstrap 3.0.0 Snippet by outsideMyBox

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet">
<!-- another version - flat style with animated hover effect -->
<div style="margin-left:20px;margin-top:50px;"
<div id="bc1" class="myBreadcrumb">
<a href="#" class="active"><i class="fa fa-home fa-2x"></i></a>
<div>...</div>
<a href="#"><div>label 1</div></a>
<a href="#"><div>A very very long label 2 to truncate</div></a>
<a href="#"><div>label 3</div></a>
<a href="#"><div>A very very long label 4 to truncate</div></a>
<a href="#"><div>label 5</div></a>
<a href="#"><div>label 6</div></a>
</div>
</div>
<div style="margin-left:20px;margin-top:50px;"
<div id="bc2" class="myBreadcrumb">
<a href="#" class="active"><i class="fa fa-home fa-2x"></i></a>
<div>...</div>
<a href="#"><div>label 1</div></a>
<a href="#"><div>A very very long label 2 to truncate</div></a>
<a href="#"><div>label 3</div></a>
<a href="#"><div>A very very long label 4 to truncate</div></a>
<a href="#"><div>label 5</div></a>
<a href="#"><div>label 6</div></a>
<a href="#"><div>label 7</div></a>
<a href="#"><div>label 8</div></a>
</div>
</div>
<!--div style="margin-left:20px;margin-top:50px;margin-bottom:200px"
<div id="bc2" class="myBreadcrumb">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.myBreadcrumb {
display: inline-block;
box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
overflow: hidden;
border-radius: 5px;
}
.myBreadcrumb > * {
text-decoration: none;
outline: none;
display: block;
float: left;
font-size: 12px;
line-height: 36px;
color: black;
/*need more margin on the left of links to accomodate the numbers*/
padding: 0 10px 0 30px;
background: white;
position: relative;
transition: all 0.5s;
}
.myBreadcrumb > * div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.myBreadcrumb > *:first-child {
padding-left: 10px;
border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function(){
$(window).resize(function() {
//console.debug($("#bc1 a:hidden"))
ellipses1 = $("#bc1 :nth-child(2)")
if ($("#bc1 a:hidden").length >0) {ellipses1.show()} else {ellipses1.hide()}
ellipses2 = $("#bc2 :nth-child(2)")
if ($("#bc2 a:hidden").length >0) {ellipses2.show()} else {ellipses2.hide()}
})
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: