All Projects → changsanjiang → Sjslider

changsanjiang / Sjslider

Licence: mit
滑块视图

Labels

Projects that are alternatives of or similar to Sjslider

Yjsliderview
方便快捷轻量级的SlideView接入,模仿UITableView的API实现接口。使用Frame和约束布局都很方便。所有需要的就两个文件YJSliderView的头文件和实现文件。
Stars: ✭ 43 (-54.26%)
Mutual labels:  slider
Wallop
⛔️ currently unmaintained ⛔️ A minimal JS library for showing & hiding things
Stars: ✭ 1,125 (+1096.81%)
Mutual labels:  slider
Before after slider
before after slider
Stars: ✭ 80 (-14.89%)
Mutual labels:  slider
Sizeslidebutton
A fun Swift UIControl for picking a size
Stars: ✭ 46 (-51.06%)
Mutual labels:  slider
React Carousel
Lightweight carousel component for react
Stars: ✭ 56 (-40.43%)
Mutual labels:  slider
React Slidy
🍃 React Slidy - Minimalistic and smooth touch slider and carousel component for React
Stars: ✭ 69 (-26.6%)
Mutual labels:  slider
Range Slider
The simplest JavaScript custom range slider ever!
Stars: ✭ 41 (-56.38%)
Mutual labels:  slider
React Siema
ReactSiema Demo
Stars: ✭ 90 (-4.26%)
Mutual labels:  slider
Summerslider
🍭 SummerSlider that can distinguish the parts where the advertisement of the video player comes out
Stars: ✭ 61 (-35.11%)
Mutual labels:  slider
Reviews slider
A Flutter animated widget made to help users leave reviews and feedbacks
Stars: ✭ 74 (-21.28%)
Mutual labels:  slider
Tiny Swiper
Ingenious JavaScript Carousel powered by wonderful plugins. Lightweight yet extensible. Import plugins as needed, No more, no less.
Stars: ✭ 1,061 (+1028.72%)
Mutual labels:  slider
React Soft Slider
Simple, fast and impartial slider
Stars: ✭ 54 (-42.55%)
Mutual labels:  slider
React Native Carousel View
react-native carousel, support in both Android and iOS
Stars: ✭ 70 (-25.53%)
Mutual labels:  slider
Img Comparison Slider
Image comparison slider. Compare images before and after. Supports React, Vue, Angular.
Stars: ✭ 45 (-52.13%)
Mutual labels:  slider
Slidercaptcha
Slider captcha support mobile
Stars: ✭ 88 (-6.38%)
Mutual labels:  slider
React Image Comparison Slider
A React component to compare images with a slider.
Stars: ✭ 43 (-54.26%)
Mutual labels:  slider
D3 Simple Slider
A simple interactive SVG slider
Stars: ✭ 64 (-31.91%)
Mutual labels:  slider
Mscircularslider
A fully-featured, powerful circular slider for iOS applications
Stars: ✭ 94 (+0%)
Mutual labels:  slider
Gaugeslider
Highly customizable GaugeSlider designed for a Smart Home app. Featured at Medium.
Stars: ✭ 89 (-5.32%)
Mutual labels:  slider
React Marquee Slider
The marquee slider of your deepest dreams. Only for React.js ⛺
Stars: ✭ 73 (-22.34%)
Mutual labels:  slider

SJSlider

滑块视图

    pod 'SJSlider'    

进度(支持 AutoLayout)


    SJSlider *slider = [SJSlider new];
    [self.view addSubview:slider];
    slider.frame = CGRectMake(20, 100, 200, 10);
    slider.value = 0.5;      
    

滑块 + 不切圆角

    SJSlider *slider = [SJSlider new];
    [self.view addSubview:slider];
    slider.isRound = NO;
    slider.frame = CGRectMake(20, 100, 200, 10);
    slider.thumbImageView.image = [UIImage imageNamed:@"thumb"];
    slider.value = 0.5;

缓冲

    SJSlider *slider = [SJSlider new];
    [self.view addSubview:slider];
    slider.frame = CGRectMake(20, 100, 200, 10);
    slider.value = 0.5;
    slider.enableBufferProgress = YES;
    slider.bufferProgress = 0.8;

左右标签

    SJButtonSlider *b_slider = [SJButtonSlider new];
    b_slider.frame = CGRectMake(50, 300, 300, 40);
    b_slider.slider.value = 0.3;
    b_slider.slider.thumbImageView.image = [UIImage imageNamed:@"thumb"];
    b_slider.leftText = @"00:00";
    b_slider.rightText = @"12:00";
    b_slider.titleColor = [UIColor whiteColor];
    [self.view addSubview:b_slider];

Contact

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].