All Projects → MQZHot → Mtransparentnav

MQZHot / Mtransparentnav

Licence: mit
Change NavigationBar's color and transparency 导航栏颜色渐变,通过给viewController添加属性,可方便控制title、item、导航栏颜色变化

Programming Languages

objc
23 projects

Projects that are alternatives of or similar to Mtransparentnav

Glasscord
[BUGFIXES ONLY, SUPPORT WILL DROP MAR 1, 2021] Injecting composition effects into Electron applications!
Stars: ✭ 737 (+576.15%)
Mutual labels:  transparency
React Native X Bar
🎩 A flexible, lightweight bar component for common UI patterns in React Native
Stars: ✭ 68 (-37.61%)
Mutual labels:  navigationbar
Custom bubble navigation bar
A custom navigation bar with bubble click effect in Flutter
Stars: ✭ 104 (-4.59%)
Mutual labels:  navigationbar
Ultimatebarx
Make Android transparent statusbar and navigationbar easy.
Stars: ✭ 879 (+706.42%)
Mutual labels:  navigationbar
Evncustomsearchbar
🔍Born for iOS 11 and iPhone X SearchBar
Stars: ✭ 52 (-52.29%)
Mutual labels:  navigationbar
Libreselery
Continuous distribution of funding to your project contributors and dependencies. Integrated into GitHub Actions
Stars: ✭ 92 (-15.6%)
Mutual labels:  transparency
Public
My public self and book of beliefs.
Stars: ✭ 685 (+528.44%)
Mutual labels:  transparency
Alpha Movie
Android video player with alpha channel (chroma key) support
Stars: ✭ 105 (-3.67%)
Mutual labels:  transparency
Hyperledger Composer Supply Chain Network
An implementation of Hyperledger Composer to improve transparency and traceability of supply chain
Stars: ✭ 57 (-47.71%)
Mutual labels:  transparency
Immersionbar
android 4.4以上沉浸式状态栏和沉浸式导航栏管理,适配横竖屏切换、刘海屏、软键盘弹出等问题,可以修改状态栏字体颜色和导航栏图标颜色,以及不可修改字体颜色手机的适配,适用于Activity、Fragment、DialogFragment、Dialog,PopupWindow,一句代码轻松实现,以及对bar的其他设置,详见README。简书请参考:http://www.jianshu.com/p/2a884e211a62
Stars: ✭ 10,030 (+9101.83%)
Mutual labels:  navigationbar
Rcongresso
Pacote R para acessar dados do congresso nacional.
Stars: ✭ 42 (-61.47%)
Mutual labels:  transparency
Trace
Supply chain transparency platform proof-of-concept based on the Ethereum blockchain ✍️
Stars: ✭ 52 (-52.29%)
Mutual labels:  transparency
Efnavigationbar
An ordinary custom navigation bar.
Stars: ✭ 92 (-15.6%)
Mutual labels:  navigationbar
Animatedbottombar
A customizable and easy to use BottomBar navigation view with sleek animations, with support for ViewPager, ViewPager2, NavController, and badges.
Stars: ✭ 797 (+631.19%)
Mutual labels:  navigationbar
Customnavigationbarsample
Navigation Bar Customization in Xamarin Forms
Stars: ✭ 104 (-4.59%)
Mutual labels:  navigationbar
Ypnavigationbartransition
A Full functional UINavigationBar framework for making bar transition more natural! You don't need to call any UINavigationBar api, implementing YPNavigationBarConfigureStyle protocol for your view controller instead. (类似微信 iOS Navigation Bar 的切换方案)
Stars: ✭ 725 (+565.14%)
Mutual labels:  navigationbar
Opencollective
Collect and spend money transparently. Please report issues there. Feature requests and ideas welcome!
Stars: ✭ 1,177 (+979.82%)
Mutual labels:  transparency
Systemuihelper
Helper for dealing with Android System UI visibility
Stars: ✭ 108 (-0.92%)
Mutual labels:  navigationbar
Bubble Navigation
🎉 [Android Library] A light-weight library to easily make beautiful Navigation Bar with ton of 🎨 customization option.
Stars: ✭ 1,537 (+1310.09%)
Mutual labels:  navigationbar
Vps Comparison
A comparison between some VPS providers. It uses Ansible to perform a series of automated benchmark tests over the VPS servers that you specify. It allows the reproducibility of those tests by anyone that wanted to compare these results to their own. All the tests results are available in order to provide independence and transparency.
Stars: ✭ 1,357 (+1144.95%)
Mutual labels:  transparency

MTransparentNav

Change NavigationBar's color and transparency

导航栏滑动渐变

Usage

In the need to change the color of the controller

self.navAlpha = 0;
self.navTintColor = [UIColor whiteColor];
self.navTitleColor = [UIColor whiteColor];
self.navBackgroundColor = [UIColor greenColor];

You can change nav tintColor and barTintColor in UIScrollViewDelegate

-(void)scrollViewDidScroll:(UIScrollView *)scrollView{
    CGFloat y = scrollView.contentOffset.y;
    self.navAlpha = y / 80;
    if (y > 80) {
        self.navTitleColor = self.navTintColor = [UIColor redColor];
    } else {
        self.navTitleColor = y < 0 ? [UIColor clearColor] : [UIColor whiteColor];
        self.navTintColor = y < 0 ? [UIColor clearColor] : [UIColor whiteColor];
    }
}

Install

  • pod 'TransparentNav'

  • #import "TransparentNav.h"

Related articles

iOS导航栏滑动渐变

Author

LICENSE

MTransparentNav is released under the MIT license. See LICENSE for details.

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