Wordpress plugin

MartinChillz

BANNED
Joined
Sep 27, 2012
Messages
232
Reaction score
29
Hello guys, could you help me for looking at this wordpress plugin and say whats name of it ? :)
when you press + it opens the information when - it closes the column..

plugin.png
Thanks in advance
Best regards,
Martin
 
Thanks seocrab!!

It's not a plugin as far as I can tell, but functionality from a theme. For example, Sahifa supports it: http://themeforest.net/item/sahifa-responsive-wordpress-newsmagazineblog/2819356

You can replicate the effect with various free plugins:

http://wordpress.org/plugins/simple-content-reveal/screenshots/
 
It can be easy done by html, if you need example code I can write it for you

You can use this plugin for to hide and show text with one click http://wordpress.org/plugins/fancy-spoiler

and you can use html for it

<html><head>
<style>
ul.list_img {
list-style-image: url(http://ktonanovenkogo.ru/wp-content/themes/Organic/images/bullet.png);
line-height: 170%;
}
ul.list_img li {
cursor: pointer;
}
ul.list_imgs {
list-style: none none;
display: none;
}
</style>
</head>
<body>
<ul class="list_img" id="ul">
<li class="c1">Title One</li>
<ul id="c1" class="list_imgs">
<li>hiden text 1</li>
</ul>
<li class="c2">Title 2</li>
<ul id="c2" class="list_imgs">
<li>hiden text 2</li>
</ul>
<li class="c3">title 3</li>
<ul id="c3" class="list_imgs">
<li>text 3</li>
</ul>
<li class="c4">Title 4</li>
<ul id="c4" class="list_imgs">
<li>text 4</li>
</ul>
</ul>
<script>
window.onload = function () {


document.getElementById("ul").onclick = function a(e) {


e = e || event;


var target = e.target || e.srcElement;


if (target.tagName == "LI") {


document.getElementById(target.className).style.display = document.getElementById(target.className).style.display == "block" ? "none" : "block";


target.style.listStyleImage = document.getElementById(target.className).style.display == "block" ? "url(http://yandex.st/share/static/b-share-popup_down__tail.png)" : "url(http://ktonanovenkogo.ru/wp-content/themes/Organic/images/bullet.png)";


//alert("v");
}
}
}
</script>
</body>
</html>
 
Last edited:
Back
Top