更改计划,有人可以建议我在用户按下按钮时为每个列添加一个隐藏div的功能吗?
我使用了一个函数,但最后它只会导致更多的间隙和更多的复杂化使页面和其他元素变得混乱,然后我在jsfiddle中发现了另一个函数 会很好用,而且看起来要简单得多。
有人可以帮我替换列的其他功能的当前功能吗?
**This function would be ideal to replace the current function, giving the slide
effect with hidden column extra divs (a,b,c) all on one column
(marked as Column1) for example**
**Instead of the current function that expands the column by pressing "more",
replace it by having all on one column just like a picture
slideshow ----> the column has (divbox) slides with different content on it**
每列的理想功能
4列的当前功能
**请求我,我真的需要帮助,我会非常感激。请知道,这里有才能的人能在一分钟内做到这一点,我希望我知道这一点,但无论我如何努力和信任我真的很努力,无法学习它,它没有经历:( 请
答案 0 :(得分:0)
安吉,我希望这就是你要找的东西。
function slideonlyone(thechosenone) {
$('div[name|=box]').each(function (index) {
if ($(this).attr("id") == thechosenone) {
$(this).slideDown(200);
} else {
$(this).slideUp(600);
}
});
}
基本上将您的文章放在幻灯片中。你将不得不调整img urls并处理CSS样式。
希望能帮到你。