admin管理员组文章数量:1341445
I have followed few tutorials and then created a simple accordion widget, it works fine as you can see in this fiddle
However, I am trying to add a downward arrow when the section is closed and an upper arrow when the section is open - at the right end of the head of each tab in the accordion, just as the image below shows:
Here is the arrows font codes:
.icon-arrowUp:before {
content: "\f077";
}
.icon-arrowDown:before {
content: "\f078";
}
Here is what I have tried, I added the downward arrow by default using CSS:
.accordian .accordian-head:before {
font-family: 'icons';
content: "\f078";
float: right;
}
This added the arrow nicely, however now I want it to replace that arrow with the upward one when the section is open, I have no clue what to do! I tried to add the following CSS and toggle it with JavaScript, but it didn't work:
.accordian .accordian-head .accordian-head-active:before {
font-family: 'icons';
content: "\f077";
background-color: red;
}
//Accordian
$('.accordion').each(function () {
var $accordian = $(this);
$accordian.find('.accordion-head').on('click', function () {
$accordian.find('.accordion-body').slideUp();
if (!$(this).next().is(':visible')) {
$(this).next().slideDown();
$(this).addClass('accordian-head-active');
}
});
});
I have followed few tutorials and then created a simple accordion widget, it works fine as you can see in this fiddle
However, I am trying to add a downward arrow when the section is closed and an upper arrow when the section is open - at the right end of the head of each tab in the accordion, just as the image below shows:
Here is the arrows font codes:
.icon-arrowUp:before {
content: "\f077";
}
.icon-arrowDown:before {
content: "\f078";
}
Here is what I have tried, I added the downward arrow by default using CSS:
.accordian .accordian-head:before {
font-family: 'icons';
content: "\f078";
float: right;
}
This added the arrow nicely, however now I want it to replace that arrow with the upward one when the section is open, I have no clue what to do! I tried to add the following CSS and toggle it with JavaScript, but it didn't work:
.accordian .accordian-head .accordian-head-active:before {
font-family: 'icons';
content: "\f077";
background-color: red;
}
//Accordian
$('.accordion').each(function () {
var $accordian = $(this);
$accordian.find('.accordion-head').on('click', function () {
$accordian.find('.accordion-body').slideUp();
if (!$(this).next().is(':visible')) {
$(this).next().slideDown();
$(this).addClass('accordian-head-active');
}
});
});
Share
Improve this question
edited Apr 14, 2014 at 10:33
Leo
asked Apr 14, 2014 at 10:25
LeoLeo
9772 gold badges14 silver badges37 bronze badges
5
- 1 HERE is something for you to play with – Batu.Khan Commented Apr 14, 2014 at 10:53
- @BatuZet this worked! but how can I replace it with my arrows? I can't do it... I tried adding the codes but it just won't do it. Please advice – Leo Commented Apr 14, 2014 at 11:54
-
If you look at
.accordion .accordion-head span
style youre gonna see thebackground-image
i've used for. Check it and change it accordingly to whatever u like. – Batu.Khan Commented Apr 14, 2014 at 11:58 - I just tried: jsfiddle/x5hPR – Leo Commented Apr 14, 2014 at 11:58
- I tried something like: $accordian.find('.accordian-head').css(":before",'\f078') – Leo Commented Apr 14, 2014 at 11:59
2 Answers
Reset to default 5I have using CSS border - Arrow
JS
$('.accordion').each(function () {
var $accordian = $(this);
$accordian.find('.accordion-head').on('click', function () {
$accordian.find('.accordion-body').slideUp();
if (!$(this).next().is(':visible')) {
$(this).next().slideDown();
$('h4 span',this).text("Up Arrow");
}else{
$('h4 span',this).text("Down Arrow");
}
});
});
added CSS
.arrow {
float: right;
width: 0px;
height: 0px;
margin-top: 23px;
border: 10px solid transparent;
margin-top: 21px;
border-top-color: #F3F3F3;
}
.accordion-head.open .arrow {
margin-top: 11px;
border-bottom-color: #F3F3F3;
border-top-color: transparent;
}
DEMO HERE
DEMO 2
I have made a simple JQuery solution to get this working. Im sure you can refine it, but at least it is going in the correct direction.
In the Head, H4 I have added a span with the "arrow text"
<h4>Section A<span>Down Arrow</span></h4>
..Changed the css for the span to float it right
.accordion .accordion-head span {
float:right
}
and finally added a little JQuery to change the text
...
if (!$(this).next().is(':visible')) {
$(this).next().slideDown();
$('h4 span',this).text("Up Arrow");
}else{
$('h4 span',this).text("Down Arrow");
}
...
JSFiddle
本文标签: javascriptToggle up and down arrows in a simple accordion widgetStack Overflow
版权声明:本文标题:javascript - Toggle up and down arrows in a simple accordion widget - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743676859a2520463.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论