0
嗨,我一直在使用WordPress的「滑動閱讀更多」插件來擴展在FrontPage中閱讀更多文章。該插件的工作原樣。但是當我點擊read-more鏈接時,我也需要它水平擴展。目前它只在第二次點擊div空間時水平擴展。該網站是:www.platformbk.nl - 謝謝!Jquery Wordpress首頁閱讀更多的滑塊
下面是代碼:
var $jslide = jQuery.noConflict();
$jslide(document).ready(function() {
// MY CODE BELOW
var modWidth = 679;
var origWidth = 326;
$('div.box-content').click(function() {
$(this).width(modWidth);
});
// initialise the visibility check
var is_visible = false;
// append show/hide links to the element directly preceding the element with a class of "toggle"
$jslide('.toggle').prev().append(' <a href="#" class="toggleLink">'+showText+'</a>');
// hide all of the elements with a class of 'toggle'
$jslide('.toggle').hide();
// capture clicks on the toggle links
$jslide('a.toggleLink').click(function() {
// switch visibility
is_visible = !is_visible;
// change the link depending on whether the element is shown or hidden
$jslide(this).html((!is_visible) ? showText : hideText);
// toggle the display - uncomment the next line for a basic "accordion" style
//$('.toggle').hide();$('a.toggleLink').html(showText);
$jslide(this).parent().next('.toggle').toggle('slow');
// return false so any link destination is not followed
return false;
});
});