All Projects → Cutta → Continuousscrollableimageview

Cutta / Continuousscrollableimageview

Library for animating images with continuous scrolling effects

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Continuousscrollableimageview

Perspective
Powerful scrolling and motion parallax for iOS
Stars: ✭ 260 (-39.39%)
Mutual labels:  scrolling
Pagecontroller
Infinite paging controller, scrolling through contents and title bar scrolls with a delay
Stars: ✭ 344 (-19.81%)
Mutual labels:  scrolling
Tlyshynavbar
Unlike all those arrogant UINavigationBar, this one is shy and humble! Easily create auto-scrolling navigation bars!
Stars: ✭ 3,780 (+781.12%)
Mutual labels:  scrolling
Ngx Scroll To
Scroll to any element to enhance scroll-based features in you app. Works for Angular 4+, both AoT and SSR. No dependencies.
Stars: ✭ 269 (-37.3%)
Mutual labels:  scrolling
Rssmonster
Google Reader inspired self-hosted RSS reader written in VueJS with an Express NodeJS backend. RSSMonster is compatible with the Fever API.
Stars: ✭ 321 (-25.17%)
Mutual labels:  scrolling
Bifacialview
Stars: ✭ 355 (-17.25%)
Mutual labels:  imageview
Diagonal Imageview
A simple imageview which allows you to create diagonal cut views easily
Stars: ✭ 257 (-40.09%)
Mutual labels:  imageview
Pagepiling.js
pagePiling plugin by Alvaro Trigo. Create a scrolling pile of sections. http://alvarotrigo.com/pagePiling/
Stars: ✭ 3,993 (+830.77%)
Mutual labels:  scrolling
Jump.js
A modern smooth scrolling library.
Stars: ✭ 3,459 (+706.29%)
Mutual labels:  scrolling
Sweet Scroll
🍭 ECMAScript2015+ & TypeScript Friendly, dependency-free smooth scroll library.
Stars: ✭ 380 (-11.42%)
Mutual labels:  scrolling
Windowview
Android ImageView you pan by tilting your device.
Stars: ✭ 269 (-37.3%)
Mutual labels:  imageview
Animated Scroll To
Lightweight scroll to function with a powerful API.
Stars: ✭ 299 (-30.3%)
Mutual labels:  scrolling
Imageviewer
🔮图片浏览器,支持图片手势缩放、拖拽等操作,`自定义View`的模式显示,自定义图片加载方式,更加灵活,易于扩展,同时也适用于RecyclerView、ListView的横向和纵向列表模式,最低支持版本为Android 3.0及以上...
Stars: ✭ 363 (-15.38%)
Mutual labels:  imageview
Phytouch
Smooth scrolling, rotation, pull to refresh, page transition and any motion for the web - 丝般顺滑的触摸运动方案
Stars: ✭ 2,854 (+565.27%)
Mutual labels:  scrolling
React Scrolllock
🔒 Prevent scroll on the <body />
Stars: ✭ 393 (-8.39%)
Mutual labels:  scrolling
React Custom Scrollbars
React scrollbars component
Stars: ✭ 2,924 (+581.59%)
Mutual labels:  scrolling
React Scroll To
Scroll to a position in React
Stars: ✭ 348 (-18.88%)
Mutual labels:  scrolling
Avatarview
A circular Image View with a lot of perks. Including progress animation and highlight state with borders and gradient color.
Stars: ✭ 429 (+0%)
Mutual labels:  imageview
React Gridlist
A virtual-scrolling GridList component based on CSS Grids
Stars: ✭ 394 (-8.16%)
Mutual labels:  scrolling
Mac Mouse Fix
Mac Mouse Fix - A simple way to make your mouse better.
Stars: ✭ 362 (-15.62%)
Mutual labels:  scrolling

ContinuousScrollableImageView

Library for animating images with continuous scrolling effects

Simple android view to display images with continuous scrolling effects efficiently. You can set image source, scaleType, duration and direction. Example usages can be found in sample project.

SCREENS

| |

JAVA USAGE

Classic Way

 image = new ContinuousScrollableImageView(this);
        image.setResourceId(R.drawable.bg_sample);
        image.setDirection(ContinuousScrollableImageView.DOWN);
        image.setScaleType(ContinuousScrollableImageView.FIT_XY);
        image.setDuration(3000);
        rootLayout.addView(image);

Builder Way

image = new ContinuousScrollableImageView.Builder(MainActivity.this)
                .setResourceId(R.drawable.bg_sample)
                .setDirection(ContinuousScrollableImageView.UP)
                .setDuration(3000)
                .setScaleType(ContinuousScrollableImageView.FIT_XY)
                .build();
                rootLayout.addView(image);

XML USAGE

       <com.cunoraz.continuouscrollable.ContinuousScrollableImageView
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            app:direction="right"
            app:scaleType="centerInside"
            app:duration="2500"
            app:imageSrc="@drawable/plane"/>

IMPORT

Project build.gradle

repositories {
    maven {
        url "https://jitpack.io"
    }
}

Module build.gradle

compile 'com.github.Cutta:ContinuousScrollableImageView:1.0'

Credits

License

Copyright 2017 Cüneyt Çarıkçi.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].