タグ付けされた質問 「slide」

14
jQueryを使用してページをアンカーまで上下にスクロールする方法は?
ページの上または下のローカルアンカーへのリンクをクリックしたときのスライド効果を含める方法を探しています。 あなたがそのようなリンクを持っている何かが欲しい: <a href="#nameofdivetc">link text, img etc.</a> おそらくクラスが追加されているので、このリンクをスライディングリンクにしたいことがわかります。 <a href="#nameofdivetc" class="sliding-link">link text, img etc.</a> 次に、このリンクをクリックすると、ページが必要な場所(div、見出し、ページの上部など)まで上下にスライドします。 これは私が以前持っていたものです: $(document).ready(function(){ $(".scroll").click(function(event){ //prevent the default action for the click event event.preventDefault(); //get the full url - like mysitecom/index.htm#home var full_url = this.href; //split the url by # and get the anchor target name - …

8
表示モードのアニメーション、GONEおよびVISIBLE
だから私は他のウィジェットでlinearlayoutの可視性をGONEからVISIBLE、そしてその逆に設定するときにアニメーション化しようとしています。トグルボタンを使用して表示と非表示を切り替えます。ここに私が何をしたいかを示す画像があります: 表示と非表示を切り替えることはできますが、スライドを正しくアニメーション化するにはどうすればよいですか。 ここに私のxml: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/LinearLayout01" android:layout_height="wrap_content" android:layout_width="fill_parent" android:orientation="vertical"> <ScrollView android:id="@+id/ScrollView01" android:layout_width="wrap_content" android:layout_height="wrap_content"> <LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" android:orientation="vertical"> <!-- TITULO1 --> <LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" android:orientation="horizontal" android:background="#848284" android:padding="4px"> <TextView android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/TextView01" android:text="Informação Geral" android:textColor="#FFFFFF" android:gravity="left" android:textStyle="bold" android:singleLine="true" android:ellipsize="end" android:layout_gravity="center_vertical" android:textSize="18px" android:paddingLeft="4px"> </TextView> <LinearLayout android:layout_height="wrap_content" android:layout_width="fill_parent" android:layout_gravity="right|center_vertical" android:gravity="right|center_vertical" android:paddingTop="2px"> …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.