คำถามติดแท็ก 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 …

8
โหมดการมองเห็นเคลื่อนไหวหายไปและมองเห็นได้
ดังนั้นฉันจึงพยายามทำให้เคลื่อนไหวเมื่อฉันตั้งค่าการมองเห็นของ linearlayout ด้วยวิดเจ็ตอื่น ๆ จาก GONE ไปเป็น VISIBLE และตรงกันข้ามฉันกำลังใช้ togglebuttons เพื่อแสดงและซ่อน นี่คือภาพเพื่อแสดงสิ่งที่ฉันต้องการทำ: ฉันสามารถแสดงและซ่อนได้ แต่ฉันทำตามไม่ได้ฉันจะทำอย่างไรให้เลื่อนอย่างถูกต้อง .... :( นี่คือ 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 …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.