4

私はjqueryuiアコーディオンを使用してユーザーにさまざまなデータを表示していますが、jquery ui / demosで説明されているように完全に機能していますが、スライド効果の効果を変更して、上下にスライドするのではなく、左右にスライドさせるために(画像カタログのように、このページのビジュアルデザインhttp://wiki.jqueryui.com/w/page/12137702/Accordion?SearchFor=accordion+horizo ​​ntal&sp=1 )、それを行うことは可能ですか? ?javascript:

$(function() {
                $("#accordion").accordion({autoHeight:false, collapsible: true, navigation: true,
                    clearStyle: true,
                    change: function(event, ui) {
                        resize_iframe();
                    }
                });
            });

コード:

echo '<div id="accordion">';
        while ($r = mysql_fetch_assoc($get_role)) {
            $role = $r['role'];
            if ($role == 'author') {
                echo '<h3><a href="#">Author</a></h3>';
                echo "<div>";
                AuthorView($member_id, $conference_id, $start, $end, $today);
                echo "</div>";
            } else if ($role == 'organizer') {
                echo '<h3><a href="#">Organizer</a></h3>';
                echo "<div>";
                OrganizerView($conference_id, $end);
                echo "</div>";
            } else if ($role == 'reviewer') {
                echo '<h3><a href="#">Reviewer</a></h3>';
                echo "<div>";
                ReviewerView($member_id, $conference_id, $start, $end, $today);
                echo "</div>";
            }
        }
        echo "</div>";
4

2 に答える 2

0

Hiya 2原因に合った実用的なデモ:http://jsfiddle.net/g4NLf/

-編集- 9月5日: 新しいデモ: http: //jsfiddle.net/g4NLf/ または http://jsfiddle.net/g4NLf/show

1つは単純なアコーディオンを訴え、もう1つは小さなlibを使用します。

http://nicolahibbert.com/demo/liteAccordion/

これがお役に立てば幸いです。:)

HTMLはデモリンクにありますが、この投稿に貼り付けることができます。また、それがあなたを助けるかどうかを知ってください!

コード

$('.accordion').accordion({collapsible:true,active:false});

また

$(function(){
    $('#one').liteAccordion({
                        containerWidth:400,
                        autoPlay : true,
                        pauseOnHover : true,
                        theme : 'dark',
                        rounded : true,
                        enumerateSlides : true                    
                })

})

スクリプト

<script src="http://nicolahibbert.com/demo/liteAccordion/js/liteaccordion.jquery.js"></script>


<link href="http://nicolahibbert.com/demo/liteAccordion/css/liteaccordion.css" rel="stylesheet" />
​
于 2012-07-29T21:58:55.417 に答える
0

ここCodepenで全ページのデモをチェックしてください。

var space = ($(window).width() - 100);
$('.column').width(space/4);

$(".column").click(function(){
	if (!$(this).hasClass('animated')) {
		$('.column').not($(this).parent()).dequeue().stop().animate({width: 'toggle', opacity: '0.75'},1750,'easeInOutQuint', function () {
      
    });
	}
  
  $(this).addClass('animated');
  	$('.column').not($(this,'.reveal').parent()).dequeue().stop().animate({width: 'toggle', opacity: '0.75'},1750,'easeInOutQuint', function () {
      
	  });
    $(this).dequeue().stop().animate({
        width:(space/4)
    },1400,'easeInOutQuint',function(){
      $(this).html('AGAIN');
    });
  $('.reveal').dequeue().stop().animate({
        width:'75vw'
    },1400,'easeInOutQuint',function(){
    });
});
body { overflow:hidden;max-width:100vw; }
header { position:absolute;left:0;top:0;width:200px;height:100vh;color:#ffffff;font-size:2em;}
.columns { position:absolute;left:100px;top:0;height:100vh;background:green;width:100%;}
.column { height:100vh;float:left;color:#ffffff;font-size:2em;text-align:center;display:block;opacity:0.75;-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
.reveal { background:rgba(0,0,0,0.5);height:100vh;-webkit-transition: all 2s;
    -moz-transition: all 2s;
    -o-transition: all 2s;
    transition: all 2s linear;left:200px;color:#ffffff; }
<div class="container">
  
  <header style="background:#333333;">
    
  </header>
  
  <div class="columns" style="background-image:url('http://placekitten.com/800/300');background-size:cover;background-repeat:no-repeat;background-position:center top;">
    
    <div class="column" style="background:blue;">DOUBLE<br>CLICK</div>
    <div class="column" style="background:green;">ANY<br>OF</div>
    <div class="column" style="background:orange;">THESE COLUMNS</div>
    <div class="column" style="background:pink;">TO REVEAL</div>
    <div class="column reveal">THIS</div>
  </div>
</div>

于 2014-11-30T02:41:14.643 に答える