Questions tagged «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以及相反)的可见性时,我试图制作动画。我使用切换按钮显示和隐藏。这是一张图片,显示我想做什么: 我可以显示和隐藏,但我没有遵循我如何正确设置滑动动画.... :( 这是我的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" …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.