gallery

Swap BG gradient images in a gallery of swatches

大兔子大兔子 提交于 2020-04-07 09:14:06
问题 I am finishing a function to edit swatches in a grid,and am at the point where small image needs to be swapped with the main image to edit/alter if required, the current code gets the individual image, but not swap it with the main image. I have used .src, but this doesn't seem to be right for a gradient background image, should I use backgroundImage?. Code is below, and works until the swap, which doesnt. The mainID id is the large div at the top of the page "bodybg", where the swatch was

Swap BG gradient images in a gallery of swatches

折月煮酒 提交于 2020-04-07 09:13:24
问题 I am finishing a function to edit swatches in a grid,and am at the point where small image needs to be swapped with the main image to edit/alter if required, the current code gets the individual image, but not swap it with the main image. I have used .src, but this doesn't seem to be right for a gradient background image, should I use backgroundImage?. Code is below, and works until the swap, which doesnt. The mainID id is the large div at the top of the page "bodybg", where the swatch was

Android 控件之ImageSwitcher图片切换器

十年热恋 提交于 2020-03-21 16:14:57
ImageSwitcher是Android中控制图片展示效果的一个控件,如:幻灯片效果...,颇有感觉啊。做相册一绝 源码下载 一、重要方法      setImageURI ( Uri uri):设置图片地址      setImageResource (int resid):设置图片资源库      setImageDrawable ( Drawable drawable):绘制图片 二、实例     <ImageSwitcher android:id="@+id/switcher" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentTop="true" android:layout_alignParentLeft="true" /> <Gallery android:id="@+id/gallery" android:background="#55000000" android:layout_width="match_parent" android:layout_height="60dp" android:layout_alignParentBottom="true" android:layout_alignParentLeft=

android Gallery可循环显示图片

╄→гoц情女王★ 提交于 2020-03-13 13:46:32
循环显示图像的原理 循环显示有些类似于循环链表,最后一个结点的下一个结点又是第 1 个结点。循环显示图像也可以模拟这一点。 也许细心的读者从上一节实现的 ImageAdapter 类中会发现些什么。对!就是 getView 方法中的 position 参数和 getCount 方法的关系。 position 参数的值是不可能超过 getCount 方法返回的值的,也就是说, position 参数值的范围是 0 至 getCount() - 1 。 如果这时 Gallery 组件正好显示到最后一个图像, position 参数值正好为 getCount() - 1 。那么我们如何再让 Gallery 显示下一个图像呢?也就是说让 position 参数值再增 1 ,对!将 getCount() 方法的返回值也增 1 。 那么这里还有一个问题,如果 position 参数值无限地增加,就意味着 resIds 数组要不断地增大,这样会大大消耗系统的资源。想到这,就需要解决两个问题:既要 position 不断地增加,又让 resIds 数组中保存的图像资源 ID 是有限的,该怎么做呢?对于 getCount() 方法非常好解决,可以让 getCount 方法返回一个很大的数,例如, Integer.MAX_VALUE 。这时 position 参数值就可以随着 Gallery

hexo加入自定义页面

爱⌒轻易说出口 提交于 2020-03-02 14:47:43
Hexo 加入豆瓣读书页面 在 Hexo 博客个性化定制中,加入豆瓣读书界面是一个很不错的功能。GitHub 上已经有人写好了这个模块:hexo-douban,我们只需要安装模块,然后配置一下就可以了。 安装 npm install hexo-douban --save 配置 将下面的配置写入站点的配置文件_config.yml 里 douban: user: mythsman builtin: false book: title: 'This is my book title' quote: 'This is my book quote' movie: title: 'This is my movie title' quote: 'This is my movie quote' game: title: 'This is my game title' quote: 'This is my game quote' timeout: 10000 user: 你的豆瓣 ID. 打开豆瓣,登入账户,然后在右上角点击 “个人主页” ,这时候地址栏的 URL 大概是这样:”https://www.douban.com/people/xxxxxx/“,其中的”xxxxxx” 就是你的个人 ID 了。 builtin: 是否将生成页面的功能嵌入 hexo s 和 hexo g 中,默认是

玩转Android 之 绚丽的自定义Gallery

試著忘記壹切 提交于 2020-03-02 06:18:45
暑期大学生博客分享大赛 - 2011 Android 成长篇 本文参加第二届Google大学生暑期博客分享大赛 相信大家对Gallery这个控件是再喜爱不过了,用它可以做出很炫的效果,这得意于Android优良的架构和MVC设计模式的 便利。下面我会介绍一个比较炫的自定义的Gallery效果。先上效果图: 如图,主要效果包括,中央文字变大,变亮,出现倒影,未选中项变小,变暗,gallery减慢滑动速度,循环gallery展 示。 由于涉及公司项目,这里只贴关键代码和xml文档。 首先默认的Gallery滑动时,滚动速度很快,会导致某些项一闪而过看不清楚,解决的办法是继承Gallery,自定义一个 CustomGallery类,覆盖Gallery的onFling()方法,让它返回false就行了,代码如下 package com.widget; import android.content.Context; import android.util.AttributeSet; import android.view.MotionEvent; import android.widget.Gallery; public class CustomGallery extends Gallery { public CustomGallery(Context context,

Android Gallery 的简单使用

ぐ巨炮叔叔 提交于 2020-03-02 02:53:45
Android的Gallery控件是个很不错的看图控件,大大减轻了开发者对于看图功能的开发,而且效果也比较美观。本文介绍Gallery的用法,用反射机制来动态读取资源中的图片。 本文的效果图: main.xml源码: [xhtml] view plain copy print ? <? xml version = "1.0" encoding = "utf-8" ?> < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" android:orientation = "vertical" android:layout_width = "fill_parent" android:layout_height = "fill_parent" > < Gallery android:id = "@+id/gallery" android:layout_height = "fill_parent" android:layout_width = "fill_parent" > </ Gallery > </ LinearLayout > 程序源码: [java] view plain copy print ? package com.testImageView; import java.lang

Gallery实现首页图片滑动源码

随声附和 提交于 2020-02-28 17:13:44
指示图片滑动标点View设置 package com.dream.myqiyi.widget; import com.dream.myqiyi.Constans; import com.dream.myqiyi.R; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Paint; import android.util.AttributeSet; import android.util.Log; import android.view.View; public class FlowIndicator extends View { private int count; private float space, radius; private int point_normal_color, point_seleted_color; // 选中 private int seleted = 0; // background seleted normal public FlowIndicator(Context context, AttributeSet attrs) { super

Android——Gallery 图片拖动效果

☆樱花仙子☆ 提交于 2020-02-26 02:58:13
1、XML文件 <?xml version="1.0" encoding="utf-8"?> <Gallery xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gallery01" android:layout_width="fill_parent" android:layout_height="wrap_content" > </Gallery> 2、ImageAdapter public class ImageAdapter extends BaseAdapter { // 定义context private Context context; // 定义整型数组,即图片源 private Integer[] imageIds = { R.drawable.button1, R.drawable.button2, R.drawable.button3, R.drawable.button31 }; // 声明ImageAdapter public ImageAdapter(Context c) { context = c; } // 获取图片数量 @Override public int getCount() { return imageIds.length; } //

Prevent 'click' event from firing multiple times + issue with fading

谁都会走 提交于 2020-02-22 05:39:25
问题 Morning folks. Have an issue with a simple jQuery gallery i'm making. It lets the user cycle through a collection of images via some buttons and at the same time, rotates through these images on a timer. My problem is that the user is able to click the button multiple times which queues up the fade in animation and repeats it over and over, e.g. user clicks button 5 times > same image fades in/out 5 times > gallery moves to next image. I've tried using: $('#homeGalleryImage li a').unbind(