├── API ├── api.py ├── contact.json └── requirements.txt ├── README.md └── cryptant ├── css ├── colors │ └── purple.css ├── custom.css ├── etline-icons.min.css ├── graphs.css ├── index.css ├── init.css ├── ion-icons.min.css ├── liveprice.css ├── news.css ├── predictions.css ├── theme.css └── topGainersLosers.css ├── fonts ├── et-icons │ ├── et-line.eot │ ├── et-line.svg │ ├── et-line.ttf │ ├── et-line.woff │ └── et-lined41d.eot └── ion-icons │ ├── ionicons28b5.eot │ ├── ionicons28b5.svg │ ├── ionicons28b5.ttf │ └── ionicons28b5.woff ├── graphs.html ├── img ├── assets │ ├── et-line-icons.jpg │ ├── favicon.png │ ├── ion-icons.jpg │ ├── logo-dark.png │ ├── logo-light.png │ ├── ogAI.png │ ├── ogGraph.png │ ├── ogMain.jpg │ ├── ogNews.png │ ├── ogTop.jpg │ ├── up-arrow.png │ └── up-down-arrow.png ├── backgrounds │ ├── bg-1.jpg │ ├── bg-10.png │ ├── bg-2.jpg │ ├── bg-7.jpg │ ├── bg-8.jpg │ └── bg-9.png ├── blog │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ └── 5.jpg └── video │ └── thumbnail-youtube.jpg ├── index.html ├── js ├── init.js ├── jquery.js └── scripts.js ├── livePrice.html ├── news.html ├── predictions.html └── topGainersLosers.html /API/api.py: -------------------------------------------------------------------------------- 1 | from flask import Flask, jsonify 2 | from flask_cors import CORS, cross_origin 3 | import requests, os 4 | from flask_limiter import Limiter 5 | from flask_limiter.util import get_remote_address 6 | import json 7 | import string, flask, waitress 8 | 9 | ## Dependancies: 10 | # pip install flask flask-cors flask-limiter waitress 11 | 12 | # os.system("title Cryptant API") 13 | 14 | app = Flask(__name__) 15 | cors = CORS(app) 16 | 17 | # config = { 18 | # "website": "https://cryptantapi.root.sx/", 19 | # "host": "cryptantapi.root.sx", 20 | # "ip": "0.0.0.0", 21 | # "port": 7505 22 | # } 23 | 24 | # def get_remote_address(): 25 | # return flask.request.headers.get("X-Real-IP") # Using proxy_pass in nginx & setting header for real ip. 26 | 27 | coins = { 28 | '0x': 'ZRX', 29 | 'Aeon': 'AEON', 30 | 'Algorand': 'ALGO', 31 | 'Ardor': 'ARDR', 32 | 'Ark': 'ARK', 33 | 'Augur': 'REPV2', 34 | 'Basic Attention Token': 'BAT', 35 | 'BitShares': 'BTS', 36 | 'BitTube': 'TUBE', 37 | 'Bitcoin': 'BTC', 38 | 'Bitcoin Cash': 'BCH', 39 | 'Bitcoin SV': 'BSV', 40 | 'BlackCoin': 'BLK', 41 | 'Burst': 'BURST', 42 | 'Bytom': 'BTM', 43 | 'Cardano': 'ADA', 44 | 'Celo': 'CELO', 45 | 'Chainlink': 'LINK', 46 | 'Compound': 'COMP', 47 | 'Cosmos': 'ATOM', 48 | 'Crown': 'CRW', 49 | 'Curecoin': 'CURE', 50 | 'Dai': 'DAI', 51 | 'Dash': 'DASH', 52 | 'Decentraland': 'MANA', 53 | 'Decred': 'DCR', 54 | 'DigiByte': 'DGB', 55 | 'DigitalNote': 'XDN', 56 | 'Dogecoin': 'DOGE', 57 | 'EOS': 'EOS', 58 | 'Einsteinium': 'EMC2', 59 | 'Endor Protocol': 'EDR', 60 | 'Enjin Coin': 'ENJ', 61 | 'Ethereum': 'ETH', 62 | 'Ethereum Classic': 'ETC', 63 | 'ExclusiveCoin': 'EXCL', 64 | 'Expanse': 'EXP', 65 | 'FLO': 'FLO', 66 | 'Feathercoin': 'FTC', 67 | 'Firo': 'FIRO', 68 | 'GameCredits': 'GAME', 69 | 'GeoCoin': 'GEO', 70 | 'Golem Network': 'GLM', 71 | 'Groestlcoin': 'GRS', 72 | 'Gulden': 'NLG', 73 | 'Haven Protocol': 'XHV', 74 | 'Hedera Hashgraph': 'HBAR', 75 | 'Hive': 'HIVE', 76 | 'Hive Backed': 'HBD', 77 | 'Horizen': 'ZEN', 78 | 'I/O Coin': 'IOC', 79 | 'IOTA': 'IOTA', 80 | 'Ignis': 'IGNIS', 81 | 'Komodo': 'KMD', 82 | 'LBRY Credits': 'LBC', 83 | 'Lisk': 'LSK', 84 | 'Litecoin': 'LTC', 85 | 'Loom Network': 'LOOM', 86 | 'Maker': 'MKR', 87 | 'Memetic / PepeCoin': 'MEME', 88 | 'Mercury': 'MER', 89 | 'Metal': 'MTL', 90 | 'MonaCoin': 'MONA', 91 | 'Monero': 'XMR', 92 | 'MonetaryUnit': 'MUE', 93 | 'More Coin': 'MORE', 94 | 'Myriad': 'XMY', 95 | 'NEM': 'XEM', 96 | 'NEO': 'NEO', 97 | 'NavCoin': 'NAV', 98 | 'Nexus': 'NXS', 99 | 'Numeraire': 'NMR', 100 | 'OKCash': 'OK', 101 | 'Obyte': 'GBYTE', 102 | 'PIVX': 'PIVX', 103 | 'Paxos Standard Token': 'PAX', 104 | 'Peercoin': 'PPC', 105 | 'PinkCoin': 'PINK', 106 | 'Ravencoin': 'RVN', 107 | 'ReddCoin': 'RDD', 108 | 'SIBCoin': 'SIB', 109 | 'SOLVE': 'SOLVE', 110 | 'SaluS': 'SLS', 111 | 'Siacoin': 'SC', 112 | 'Spendcoin': 'SPND', 113 | 'Sphere': 'SPHR', 114 | 'StableUSD': 'USDS', 115 | 'Stealth': 'XST', 116 | 'Steem': 'STEEM', 117 | 'Steem Dollars': 'SBD', 118 | 'Stellar': 'XLM', 119 | 'Syscoin': 'SYS', 120 | 'TRON': 'TRX', 121 | 'Tether': 'USDT', 122 | 'Tezos': 'XTZ', 123 | 'TrueUSD': 'TUSD', 124 | 'US Dollar': 'USD', 125 | 'USD//Coin': 'USDC', 126 | 'Ubiq': 'UBQ', 127 | 'Verge': 'XVG', 128 | 'VeriCoin': 'VRC', 129 | 'Vertcoin': 'VTC', 130 | 'Viacoin': 'VIA', 131 | 'WAXP': 'WAXP', 132 | 'Waves': 'WAVES', 133 | 'Zcash': 'ZEC' 134 | } 135 | limiter = Limiter( 136 | app, 137 | key_func=get_remote_address, 138 | default_limits=["10 per minute"] 139 | ) 140 | keys, values = list(coins.keys()), list(coins.values()) 141 | @app.route("/getPrice/") 142 | @cross_origin() 143 | @limiter.limit("10 per minute") 144 | def home(coin): 145 | r = requests.get("https://dev-api.shrimpy.io/v1/exchanges/kucoin/ticker").json() 146 | r = [i for i in r if i['name'] == coin] 147 | if r: 148 | return jsonify(r[0]) 149 | else: 150 | return jsonify({"Error": "Coin Not Found"}) 151 | 152 | @app.route("/news") 153 | @cross_origin() 154 | @limiter.limit("10 per minute") 155 | def news(): 156 | r = requests.get("https://newsapi.org/v2/everything?q=bitcoin&apiKey=30731a8396d140aead35a5f62303da2c").json() 157 | articles = r['articles'] 158 | return jsonify(articles[:9]) 159 | 160 | @app.route("/getCandles//") 161 | @cross_origin() 162 | @limiter.limit("10 per minute") 163 | def data(coin, interval): 164 | if coin not in coins: 165 | return jsonify({"Error": "Coin Not Found"}) 166 | interval = interval.strip('0') 167 | r = requests.get(f"https://dev-api.shrimpy.io/v1/exchanges/bittrex/candles?quoteTradingSymbol=USD&baseTradingSymbol={coins[coin]}&interval={interval}").json() 168 | i = 50 169 | if interval == "1M": 170 | i = 45 171 | elif interval == "5M": 172 | i = 36 173 | elif interval == "15M": 174 | i = 45 175 | elif interval == "1H": 176 | i = 24 177 | elif interval == "6H": 178 | i = 42 179 | elif interval == "1D": 180 | i = 30 181 | return jsonify(r[-i:]) 182 | 183 | @app.route("/topGainersLosers") 184 | @cross_origin() 185 | @limiter.limit("10 per minute") 186 | def gainlose(): 187 | r = requests.get("https://dev-api.shrimpy.io/v1/exchanges/kucoin/ticker").json() 188 | r = [i for i in r if i['percentChange24hUsd']] 189 | r.sort(key=lambda x: float(x['percentChange24hUsd'])) 190 | d = {} 191 | d['gainers'] = r[-8:][::-1] 192 | d['losers'] = r[:8][::-1] 193 | return jsonify(d) 194 | 195 | @app.route("/getPrediction/") 196 | @cross_origin() 197 | @limiter.limit("10 per minute") 198 | def predict(coin): 199 | if coin not in coins: 200 | return jsonify({"Error": "Coin Not Found"}) 201 | r = requests.get(f"https://dev-api.shrimpy.io/v1/exchanges/bittrex/candles?quoteTradingSymbol=USD&baseTradingSymbol={coins[coin]}&interval=1D").json()[-11:] 202 | data = {} 203 | today = r[-1] 204 | r.pop(-1) 205 | avg = round(sum([float(i['close']) for i in r]) / len(r), 3) 206 | opn_avg = round(sum([float(i['open']) for i in r]) / len(r), 3) 207 | data['average'] = avg 208 | data['open_average'] = opn_avg 209 | if data['average'] <= 10: 210 | limit = 0.5 211 | elif data['average'] <= 100: 212 | limit = 5 213 | elif data['average'] <= 1000: 214 | limit = 50 215 | elif data['average'] <= 10000: 216 | limit = 1000 217 | else: 218 | limit = 2500 219 | if float(today['close']) - data['average'] >= limit: 220 | data['buy'] = "No" 221 | data['sell'] = "Yes" 222 | else: 223 | data['buy'] = "Yes" 224 | data['sell'] = "No" 225 | 226 | data['diff_10_days'] = round(float(today['close']) - float(r[0]['close']), 3) 227 | 228 | if float(today['close']) - data['average'] <= -limit: 229 | data['hold'] = 'Long Hold/ Buy Now' 230 | elif float(today['close']) - data['average'] >= limit: 231 | data['hold'] = 'Short Hold/ Sell Now' 232 | else: 233 | data['hold'] = 'Short Hold/ Buy Now (Short Profit)' 234 | 235 | if data['hold'] == 'Short Hold/ Sell Now' and data['sell'] == 'Yes': 236 | data['conclusion'] = "Sell Now or hold short for more profit. Don't Buy/ Hold long as it may burst (Bubble)" 237 | elif data['hold'] == 'Short Hold/ Buy Now (Short Profit)' and data['sell'] == 'No': 238 | data['conclusion'] = "Buy now if not bought. Hold Short and sell due to constant change in price. Don't Hold long" 239 | else: 240 | data['conclusion'] = "Hold Long and sell when good profit. Buy now if not bought. Don't go for short profit" 241 | data['symbol'] = coins[coin] 242 | 243 | return jsonify(data) 244 | 245 | valid = string.ascii_letters + string.digits + string.punctuation + string.whitespace 246 | 247 | def clean_content(c): 248 | return "".join([i for i in c if i in valid]) 249 | 250 | @app.route("/contact///") 251 | @cross_origin() 252 | @limiter.limit("10 per minute") 253 | def contact(name, email, message): 254 | with open("contact.json") as f: 255 | data = json.load(f) 256 | email = clean_content(email[:60]) 257 | data[email] = {} 258 | data[email]['name'] = clean_content(name[:20]) 259 | data[email]['msg'] = clean_content(message[:180]) 260 | with open("contact.json", "w") as f: 261 | json.dump(data, f, indent=4) 262 | return jsonify({"success": True}) 263 | 264 | app.run() 265 | # waitress.serve(app, host = config["ip"], port = config["port"]) 266 | 267 | -------------------------------------------------------------------------------- /API/contact.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /API/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | flask-cors 3 | flask-limiter 4 | waitress 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Cryptant](https://cryptant.my.to/) 2 | ## Your Digital Crypto Assistant 3 | 4 | **[Vote for me](https://twtcodejam.net/timathon/vote/357/)**
5 | 6 | A website which provides users free assistance on how to invest and earn from Cryptocurrencies. 7 | 8 | This is Just for fun#4278 's submission for Timathon 2021 (Jan-Feb) 9 | 10 | Presenting, **Cryptant** which provides high quality advice for free to people around the globe to make them learn how to invest and earn from cryptocurrencies. 11 | 12 | As per several reports, It is assumed that cryptocurrencies will replace every national currency and will be highly valued than current value. Cryptocurrencies like Bitcoin (BTC), Ethereum (ETH), Litecoin (LTC) are predicted to have a bright future in relation to price and valuation. 13 | 14 | ## Features 15 | 1. [AI 🤖 Advice](#ai-🤖-advice) 16 | 2. [Current Price 💸](#current-price-💸) 17 | 3. [Cryptocurrency News 📰](#cryptocurrency-news-📰) 18 | 4. [Candlestick Graphs 📈](#candlestick-graphs-📈) 19 | 5. [Top Gainers ⬆️ and Losers ⬇️](#top-gainers-⬆️-and-losers-⬇️) 20 | 6. [API](#api) 21 | 22 | ## **[AI 🤖 Advice](https://cryptant.my.to/predictions.html)** 23 | Stuck on what cryptocurrency to buy? Use our AI predictions to know the best possible outcoming cryptocurrencies in the near future.
24 | Get the future prediction from our highly trained AI just to give out the best results out to our users 🤑 25 | 26 | ### How to Open? 27 | 1. Hover to **`Services`** 👈 tab on the navigation bar of our website. 28 | 2. Click **`AI Advice`** 👈 29 | 30 | ![Image](https://media.giphy.com/media/h3NpJGXOVivzDhQ1qI/giphy.gif) 31 | 32 | ### How to Use? 33 | 1. Choose the cryptocurrency you want the prediction of. 34 | 2. Click **`Submit`** and get predictions from our AI for free 😄. 35 | 36 | ![Image](https://media.giphy.com/media/QqM0fzb33qRIZOKizV/giphy.gif) 37 | 38 | 39 | ## **[Current Price 💸](https://cryptant.my.to/livePrice.html)** 40 | Get the live prices for almost all cryptocurrencies at one place for free on **Cryptant**!
41 | Know the live price and make your decision to either buy or sell the cryptocurrency and make profit 🤑 42 | 43 | ### How to Open? 44 | 1. Hover to **`Services`** 👈 tab on the navigation bar of our website. 45 | 2. Click **`Current Price`** 👈 46 | 47 | ![Image](https://media.giphy.com/media/OgvMw55zA7MNSh9Zot/giphy.gif) 48 | 49 | ### How to Use? 50 | 1. Choose the cryptocurrency you want the live price of. 51 | 2. Click **`Submit`** and get the price from our API for free 😄. 52 | 53 | ![Image](https://media.giphy.com/media/xJjWpOzCAPZL8pWIEp/giphy.gif) 54 | 55 | 56 | ## **[Cryptocurrency News 📰](https://cryptant.my.to/news.html)** 57 | Stay Updated to what's happening in the cryptocurrency market to know and be ready to make your next move 😉
58 | Get the latest news of the current situation of the cryptocurrency market for free at one place! 59 | 60 | ### How to Open? 61 | 1. Hover to **`Services`** 👈 tab on the navigation bar of our website. 62 | 2. Click **`Cryptocurrency News`** 👈 63 | 64 | ![Image](https://media.giphy.com/media/BEQjSsJ3mOUldJg4pu/giphy.gif) 65 | 66 | ### How to Use? 67 | 1. Open **`Cryptocurrency News`** and enjoy your news 📰 68 | 69 | ![Image](https://media.giphy.com/media/GIOz5tAX8qzrbzIgrS/giphy.gif) 70 | 71 | 72 | ## **[Candlestick Graphs 📈](https://cryptant.my.to/graphs.html)** 73 | 74 | A **candlestick chart 📈** is a style of financial chart used to describe price movements of a security, derivative, or currency. Each "candlestick" typically shows one day, thus a one-month chart may show the 20 trading days as 20 candlesticks. Candlestick charts can also be built using intervals shorter or longer than one day.
75 | 76 | Cryptant provides candlestick graphs for almost all cryptocurrencies for time intervals: 77 | 1. 1 Minute 78 | 2. 5 Minutes 79 | 3. 15 Minutes 80 | 4. 1 Hour 81 | 5. 6 Hours 82 | 6. 1 Day 83 | 84 | 85 | ### How to Open? 86 | 1. Hover to **`Services`** 👈 tab on the navigation bar of our website. 87 | 2. Click **`Candlestick Graphs`** 👈 88 | 89 | ![Image](https://media.giphy.com/media/8VMNRTWOJH9InGD0Qu/giphy.gif) 90 | 91 | 92 | ### How to Use? 93 | 1. Select the **cryptocurrency** you want to get chart of 94 | 2. Select your time interval 🕥 95 | 3. Click **`Get Graph`** and get your **interactive** candlestick graph 📈 96 | 97 | ![Image](https://media.giphy.com/media/9nr1OGBnI8aNCz2e29/giphy.gif) 98 | 99 | 100 | ## **[Top Gainers ⬆️ and Losers ⬇️](https://cryptant.my.to/topGainersLosers.html)** 101 | 102 | Cryptocurrencies which gain the maximum percentage in their buying price are termed as **Top Gainers ⬆️** and which lose the maximu percentage in their buying price are termed as **Top Losers ⬇️**
103 | Cryptant provides a list of such gainers and losers at one place for free, updated regularly! 104 | 105 | ### How to Open? 106 | 1. Hover to **`Services`** 👈 tab on the navigation bar of our website. 107 | 2. Click **`Gainers & Losers`** 👈 108 | 109 | ![Image](https://media.giphy.com/media/QtLJk3hjXDie9YVifo/giphy.gif) 110 | 111 | 112 | ### How to Use? 113 | 1. Open **`Gainers & Losers`** and the site will update the gainers and losers automatically via our free-to-use API! 114 | 115 | ![Image](https://media.giphy.com/media/PFYSxinwt9ZUO36Zi1/giphy.gif) 116 | 117 | 118 | ## **[API](https://documenter.getpostman.com/view/14294116/TW6tL9xQ)** 119 | **Cryptant**, unlike any other cryptocurrency advice website, provides a **Free-To-Use** API for developers.
120 | API Docs have been posted on Postman via the owners of the website.
121 | **Note:** Rate Limit: 10 Requests/ Minute (General Rate Limit)
122 | If you want to get rate limit and want to use our API for your personal, non-commercial use, contact **`Just for fun#4278`** on `Discord`. 123 | 124 | ### API Endpoints 125 | Root URL: `https://cryptantapi.root.sx`
126 | Get the current price 💸 of any cryptocurrency: `/getPrice/`
127 | Get latest cryptocurrency news 📰: `/news`
128 | Get candles for candlestick graphs 📈: `/getCandles// 129 | Valid Intervals: `1M`, `5M`, `15M`, `1H`, `6H`, `1D` (Case insensitive)
130 | Get Top Gainers ⬆️ and Losers ⬇️: `/topGainersLosers`
131 | Get AI 🤖 Advice for any cryptocurrency: `/getPrediction/`
132 | 133 | ### How to Open Documentation 134 | 1. Hover to **`Services`** 👈 tab on the navigation bar of our website. 135 | 2. Click **`API`** 👈 136 | 137 | ![Image](https://media.giphy.com/media/RZJ0Ew7WQaP6Xhk4mo/giphy.gif) 138 | 139 | ---- 140 | If you liked my (Just for fun#4278) website, kindly do me a favour by voting me in this Codejam 😄.
141 | **[Vote for me](https://twtcodejam.net/timathon/vote/357/)** 142 | 143 | 144 | ## Want to host it yourself? 145 | 1. Install all dependencies stated in `API/requirements.txt` 146 | 2. Start `api.py` from `API` folder. 147 | 3. Change API Url in each HTML file. 148 | 4. Open `index.html` and done. 149 | 5. Host it using `nginx` if you want it to be hosted on a domain 150 | 151 | If you liked my (Just for fun#4278) website, kindly do me a favour by voting me in this Codejam 😄.
152 | **[Vote for me](https://twtcodejam.net/timathon/vote/357/)** 153 | -------------------------------------------------------------------------------- /cryptant/css/colors/purple.css: -------------------------------------------------------------------------------- 1 | .btn-primary, 2 | .btn-primary:hover, 3 | .btn-primary:focus, 4 | .btn-primary:active, 5 | .btn-primary:focus:active, 6 | .btn-ghost:hover, 7 | .btn-light:hover, 8 | .btn-primary.active, 9 | .btn-primary:active, 10 | .open>.dropdown-toggle.btn-primary, 11 | .btn-primary.disabled, 12 | .btn-primary.disabled.active, 13 | .btn-primary.disabled.focus, 14 | .btn-primary.disabled:active, 15 | .btn-primary.disabled:focus, 16 | .btn-primary.disabled:hover, 17 | .btn-primary[disabled], 18 | .btn-primary[disabled].active, 19 | .btn-primary[disabled].focus, 20 | .btn-primary[disabled]:active, 21 | .btn-primary[disabled]:focus, 22 | .btn-primary[disabled]:hover, 23 | fieldset[disabled] .btn-primary, 24 | .btn-ghost-color:hover, 25 | .btn-primary.btn-appear:hover, 26 | .bg-color, 27 | #price-list .button:hover, 28 | #price-list .featured .button, 29 | .progress-bar, 30 | .scroll-top, 31 | .portfolioFilter a.current, 32 | .portfolioFilter a:hover, 33 | .label-primary, 34 | .panel-title, 35 | #buttonTabs li.active a, 36 | .box-style5, 37 | .box-style7, 38 | .box-style10, 39 | .progress-bars-4 .progress-bar-tooltip, 40 | .timeline::before, 41 | h4.fitness-label, 42 | .bg-overlay:after, 43 | .label-items-in-cart, 44 | .cbp-l-filters-button .cbp-filter-item.cbp-filter-item-active, 45 | .cbp-l-filters-button .cbp-filter-item:hover, 46 | .contact input.submit, 47 | .contact-1 input.submit, 48 | .blog-pagination>.active>a, 49 | .blog-pagination>.active>a:hover, 50 | .video-container:hover:after, 51 | .connected-icons li a i:after, 52 | .connected-icons li a i:hover:after, 53 | .phone-number h1:after { 54 | background-color: #4c51e0 55 | } 56 | 57 | a:focus, 58 | a:hover, 59 | .color, 60 | .connected-icon a i, 61 | .testimonial-name, 62 | .testimonial-name small, 63 | .highlight, 64 | .btn-ghost-color, 65 | .contact-details-social li a:hover, 66 | .portfolioContainer li .info i, 67 | .project-changer li a, 68 | #iconTabs li.active a span, 69 | .box a, 70 | .box.box-style6 a, 71 | .box.box-style8b a, 72 | .about-me-social li a:hover, 73 | .icon-box-hover i, 74 | .footer.style-1 li a:hover, 75 | .footer.style-1>a:hover, 76 | .countdown-big h1, 77 | .home-blog-filters .cbp-filter-item-active.cbp-filter-item, 78 | .home-blog-filters .cbp-filter-item:hover, 79 | .home-filters-dark .cbp-filter-item:hover, 80 | .home-filters-dark .cbp-filter-item-active.cbp-filter-item, 81 | .connected-icons li a h4, 82 | .footer.style-1.dark ul li a, 83 | .btn-ghost, 84 | #twitter-feed-slider .user a:hover:before, 85 | #twitter-feed-slider .timePosted a:hover, 86 | #twitter-feed-slider .interact a:hover:before, 87 | #twitter-feed-list ul li:first-child .user a:hover:before, 88 | .project-nav a:hover h5, 89 | .project-nav a:hover i, 90 | .color, 91 | .feature-center.white i.color, 92 | .counter h1, 93 | .team figure figcaption a:hover, 94 | .portfolio figure figcaption p, 95 | a:hover .subheading, 96 | .blog-columns .blog-thumb-desc a:hover h4, 97 | .blog-standard a:hover h4, 98 | .blog-pagination li a:hover, 99 | .sidebar-share a:hover, 100 | .shop .cbp-l-caption-body a:hover, 101 | .team-caption ul li a:hover, 102 | .read-more-link.color span, 103 | .read-more-link2.color span, 104 | #clock .digit { 105 | color: #4c51e0 106 | } 107 | 108 | .btn-primary, 109 | .btn-primary:hover, 110 | .btn-primary:focus, 111 | .btn-primary:active, 112 | .btn-primary:focus:active, 113 | .btn-ghost, 114 | .btn-ghost:hover, 115 | .btn-light:hover, 116 | .section-heading hr, 117 | hr.separator, 118 | .btn-primary.btn-appear:hover, 119 | .accordian-style2 .panel-title, 120 | .music-bottom .play-btn, 121 | .play-bottom .play-btn, 122 | .timeline-bullet, 123 | .contact input:focus, 124 | textarea:focus, 125 | select:focus, 126 | .contact.box-style textarea:focus, 127 | .btn-primary.active, 128 | .btn-primary:active, 129 | .price-table-featured .price-box { 130 | border-color: #4c51e0 131 | } 132 | 133 | #price-list .featured .price-table, 134 | .progress-bars-4 .progress-bar-tooltip:after { 135 | border-top-color: #4c51e0 136 | } 137 | 138 | #video .play-btn:after, 139 | .music-bottom .play-btn:after, 140 | .play-bottom .play-btn:after, 141 | blockquote { 142 | border-left-color: #4c51e0 143 | } 144 | 145 | .progress-svg circle { 146 | stroke: #4c51e0 147 | } -------------------------------------------------------------------------------- /cryptant/css/custom.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cryptant/css/etline-icons.min.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'et-line'; 3 | src: url('../fonts/et-icons/et-line.eot'); 4 | src: url('../fonts/et-icons/et-lined41d.eot?#iefix') format('embedded-opentype'), url('../fonts/et-icons/et-line.woff') format('woff'), url('../fonts/et-icons/et-line.ttf') format('truetype'), url('../fonts/et-icons/et-line.svg#et-line') format('svg'); 5 | font-weight: normal; 6 | font-style: normal; 7 | } 8 | 9 | [data-icon]:before { 10 | font-family: 'et-line'; 11 | content: attr(data-icon); 12 | speak: none; 13 | font-weight: normal; 14 | font-variant: normal; 15 | text-transform: none; 16 | line-height: 1; 17 | -webkit-font-smoothing: antialiased; 18 | -moz-osx-font-smoothing: grayscale; 19 | display: inline-block; 20 | } 21 | 22 | .icon-mobile, 23 | .icon-laptop, 24 | .icon-desktop, 25 | .icon-tablet, 26 | .icon-phone, 27 | .icon-document, 28 | .icon-documents, 29 | .icon-search, 30 | .icon-clipboard, 31 | .icon-newspaper, 32 | .icon-notebook, 33 | .icon-book-open, 34 | .icon-browser, 35 | .icon-calendar, 36 | .icon-presentation, 37 | .icon-picture, 38 | .icon-pictures, 39 | .icon-video, 40 | .icon-camera, 41 | .icon-printer, 42 | .icon-toolbox, 43 | .icon-briefcase, 44 | .icon-wallet, 45 | .icon-gift, 46 | .icon-bargraph, 47 | .icon-grid, 48 | .icon-expand, 49 | .icon-focus, 50 | .icon-edit, 51 | .icon-adjustments, 52 | .icon-ribbon, 53 | .icon-hourglass, 54 | .icon-lock, 55 | .icon-megaphone, 56 | .icon-shield, 57 | .icon-trophy, 58 | .icon-flag, 59 | .icon-map, 60 | .icon-puzzle, 61 | .icon-basket, 62 | .icon-envelope, 63 | .icon-streetsign, 64 | .icon-telescope, 65 | .icon-gears, 66 | .icon-key, 67 | .icon-paperclip, 68 | .icon-attachment, 69 | .icon-pricetags, 70 | .icon-lightbulb, 71 | .icon-layers, 72 | .icon-pencil, 73 | .icon-tools, 74 | .icon-tools-2, 75 | .icon-scissors, 76 | .icon-paintbrush, 77 | .icon-magnifying-glass, 78 | .icon-circle-compass, 79 | .icon-linegraph, 80 | .icon-mic, 81 | .icon-strategy, 82 | .icon-beaker, 83 | .icon-caution, 84 | .icon-recycle, 85 | .icon-anchor, 86 | .icon-profile-male, 87 | .icon-profile-female, 88 | .icon-bike, 89 | .icon-wine, 90 | .icon-hotairballoon, 91 | .icon-globe, 92 | .icon-genius, 93 | .icon-map-pin, 94 | .icon-dial, 95 | .icon-chat, 96 | .icon-heart, 97 | .icon-cloud, 98 | .icon-upload, 99 | .icon-download, 100 | .icon-target, 101 | .icon-hazardous, 102 | .icon-piechart, 103 | .icon-speedometer, 104 | .icon-global, 105 | .icon-compass, 106 | .icon-lifesaver, 107 | .icon-clock, 108 | .icon-aperture, 109 | .icon-quote, 110 | .icon-scope, 111 | .icon-alarmclock, 112 | .icon-refresh, 113 | .icon-happy, 114 | .icon-sad, 115 | .icon-facebook, 116 | .icon-twitter, 117 | .icon-googleplus, 118 | .icon-rss, 119 | .icon-tumblr, 120 | .icon-linkedin, 121 | .icon-dribbble { 122 | font-family: 'et-line'; 123 | speak: none; 124 | font-style: normal; 125 | font-weight: normal; 126 | font-variant: normal; 127 | text-transform: none; 128 | line-height: 1; 129 | -webkit-font-smoothing: antialiased; 130 | -moz-osx-font-smoothing: grayscale; 131 | display: inline-block; 132 | } 133 | 134 | .icon-mobile:before { 135 | content: "\e000"; 136 | } 137 | 138 | .icon-laptop:before { 139 | content: "\e001"; 140 | } 141 | 142 | .icon-desktop:before { 143 | content: "\e002"; 144 | } 145 | 146 | .icon-tablet:before { 147 | content: "\e003"; 148 | } 149 | 150 | .icon-phone:before { 151 | content: "\e004"; 152 | } 153 | 154 | .icon-document:before { 155 | content: "\e005"; 156 | } 157 | 158 | .icon-documents:before { 159 | content: "\e006"; 160 | } 161 | 162 | .icon-search:before { 163 | content: "\e007"; 164 | } 165 | 166 | .icon-clipboard:before { 167 | content: "\e008"; 168 | } 169 | 170 | .icon-newspaper:before { 171 | content: "\e009"; 172 | } 173 | 174 | .icon-notebook:before { 175 | content: "\e00a"; 176 | } 177 | 178 | .icon-book-open:before { 179 | content: "\e00b"; 180 | } 181 | 182 | .icon-browser:before { 183 | content: "\e00c"; 184 | } 185 | 186 | .icon-calendar:before { 187 | content: "\e00d"; 188 | } 189 | 190 | .icon-presentation:before { 191 | content: "\e00e"; 192 | } 193 | 194 | .icon-picture:before { 195 | content: "\e00f"; 196 | } 197 | 198 | .icon-pictures:before { 199 | content: "\e010"; 200 | } 201 | 202 | .icon-video:before { 203 | content: "\e011"; 204 | } 205 | 206 | .icon-camera:before { 207 | content: "\e012"; 208 | } 209 | 210 | .icon-printer:before { 211 | content: "\e013"; 212 | } 213 | 214 | .icon-toolbox:before { 215 | content: "\e014"; 216 | } 217 | 218 | .icon-briefcase:before { 219 | content: "\e015"; 220 | } 221 | 222 | .icon-wallet:before { 223 | content: "\e016"; 224 | } 225 | 226 | .icon-gift:before { 227 | content: "\e017"; 228 | } 229 | 230 | .icon-bargraph:before { 231 | content: "\e018"; 232 | } 233 | 234 | .icon-grid:before { 235 | content: "\e019"; 236 | } 237 | 238 | .icon-expand:before { 239 | content: "\e01a"; 240 | } 241 | 242 | .icon-focus:before { 243 | content: "\e01b"; 244 | } 245 | 246 | .icon-edit:before { 247 | content: "\e01c"; 248 | } 249 | 250 | .icon-adjustments:before { 251 | content: "\e01d"; 252 | } 253 | 254 | .icon-ribbon:before { 255 | content: "\e01e"; 256 | } 257 | 258 | .icon-hourglass:before { 259 | content: "\e01f"; 260 | } 261 | 262 | .icon-lock:before { 263 | content: "\e020"; 264 | } 265 | 266 | .icon-megaphone:before { 267 | content: "\e021"; 268 | } 269 | 270 | .icon-shield:before { 271 | content: "\e022"; 272 | } 273 | 274 | .icon-trophy:before { 275 | content: "\e023"; 276 | } 277 | 278 | .icon-flag:before { 279 | content: "\e024"; 280 | } 281 | 282 | .icon-map:before { 283 | content: "\e025"; 284 | } 285 | 286 | .icon-puzzle:before { 287 | content: "\e026"; 288 | } 289 | 290 | .icon-basket:before { 291 | content: "\e027"; 292 | } 293 | 294 | .icon-envelope:before { 295 | content: "\e028"; 296 | } 297 | 298 | .icon-streetsign:before { 299 | content: "\e029"; 300 | } 301 | 302 | .icon-telescope:before { 303 | content: "\e02a"; 304 | } 305 | 306 | .icon-gears:before { 307 | content: "\e02b"; 308 | } 309 | 310 | .icon-key:before { 311 | content: "\e02c"; 312 | } 313 | 314 | .icon-paperclip:before { 315 | content: "\e02d"; 316 | } 317 | 318 | .icon-attachment:before { 319 | content: "\e02e"; 320 | } 321 | 322 | .icon-pricetags:before { 323 | content: "\e02f"; 324 | } 325 | 326 | .icon-lightbulb:before { 327 | content: "\e030"; 328 | } 329 | 330 | .icon-layers:before { 331 | content: "\e031"; 332 | } 333 | 334 | .icon-pencil:before { 335 | content: "\e032"; 336 | } 337 | 338 | .icon-tools:before { 339 | content: "\e033"; 340 | } 341 | 342 | .icon-tools-2:before { 343 | content: "\e034"; 344 | } 345 | 346 | .icon-scissors:before { 347 | content: "\e035"; 348 | } 349 | 350 | .icon-paintbrush:before { 351 | content: "\e036"; 352 | } 353 | 354 | .icon-magnifying-glass:before { 355 | content: "\e037"; 356 | } 357 | 358 | .icon-circle-compass:before { 359 | content: "\e038"; 360 | } 361 | 362 | .icon-linegraph:before { 363 | content: "\e039"; 364 | } 365 | 366 | .icon-mic:before { 367 | content: "\e03a"; 368 | } 369 | 370 | .icon-strategy:before { 371 | content: "\e03b"; 372 | } 373 | 374 | .icon-beaker:before { 375 | content: "\e03c"; 376 | } 377 | 378 | .icon-caution:before { 379 | content: "\e03d"; 380 | } 381 | 382 | .icon-recycle:before { 383 | content: "\e03e"; 384 | } 385 | 386 | .icon-anchor:before { 387 | content: "\e03f"; 388 | } 389 | 390 | .icon-profile-male:before { 391 | content: "\e040"; 392 | } 393 | 394 | .icon-profile-female:before { 395 | content: "\e041"; 396 | } 397 | 398 | .icon-bike:before { 399 | content: "\e042"; 400 | } 401 | 402 | .icon-wine:before { 403 | content: "\e043"; 404 | } 405 | 406 | .icon-hotairballoon:before { 407 | content: "\e044"; 408 | } 409 | 410 | .icon-globe:before { 411 | content: "\e045"; 412 | } 413 | 414 | .icon-genius:before { 415 | content: "\e046"; 416 | } 417 | 418 | .icon-map-pin:before { 419 | content: "\e047"; 420 | } 421 | 422 | .icon-dial:before { 423 | content: "\e048"; 424 | } 425 | 426 | .icon-chat:before { 427 | content: "\e049"; 428 | } 429 | 430 | .icon-heart:before { 431 | content: "\e04a"; 432 | } 433 | 434 | .icon-cloud:before { 435 | content: "\e04b"; 436 | } 437 | 438 | .icon-upload:before { 439 | content: "\e04c"; 440 | } 441 | 442 | .icon-download:before { 443 | content: "\e04d"; 444 | } 445 | 446 | .icon-target:before { 447 | content: "\e04e"; 448 | } 449 | 450 | .icon-hazardous:before { 451 | content: "\e04f"; 452 | } 453 | 454 | .icon-piechart:before { 455 | content: "\e050"; 456 | } 457 | 458 | .icon-speedometer:before { 459 | content: "\e051"; 460 | } 461 | 462 | .icon-global:before { 463 | content: "\e052"; 464 | } 465 | 466 | .icon-compass:before { 467 | content: "\e053"; 468 | } 469 | 470 | .icon-lifesaver:before { 471 | content: "\e054"; 472 | } 473 | 474 | .icon-clock:before { 475 | content: "\e055"; 476 | } 477 | 478 | .icon-aperture:before { 479 | content: "\e056"; 480 | } 481 | 482 | .icon-quote:before { 483 | content: "\e057"; 484 | } 485 | 486 | .icon-scope:before { 487 | content: "\e058"; 488 | } 489 | 490 | .icon-alarmclock:before { 491 | content: "\e059"; 492 | } 493 | 494 | .icon-refresh:before { 495 | content: "\e05a"; 496 | } 497 | 498 | .icon-happy:before { 499 | content: "\e05b"; 500 | } 501 | 502 | .icon-sad:before { 503 | content: "\e05c"; 504 | } 505 | 506 | .icon-facebook:before { 507 | content: "\e05d"; 508 | } 509 | 510 | .icon-twitter:before { 511 | content: "\e05e"; 512 | } 513 | 514 | .icon-googleplus:before { 515 | content: "\e05f"; 516 | } 517 | 518 | .icon-rss:before { 519 | content: "\e060"; 520 | } 521 | 522 | .icon-tumblr:before { 523 | content: "\e061"; 524 | } 525 | 526 | .icon-linkedin:before { 527 | content: "\e062"; 528 | } 529 | 530 | .icon-dribbble:before { 531 | content: "\e063"; 532 | } -------------------------------------------------------------------------------- /cryptant/css/graphs.css: -------------------------------------------------------------------------------- 1 | #coin 2 | { 3 | position: relative; 4 | width: 285px; 5 | color: #fff; 6 | } 7 | #main 8 | { 9 | position: relative; 10 | align-items: center; 11 | text-align: center; 12 | justify-content: center; 13 | height: 100vh; 14 | } 15 | 16 | select option { 17 | background: rgba(0, 0, 0, 0.8); 18 | color: #fff; 19 | text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4); 20 | font-size: 15px; 21 | } 22 | 23 | select 24 | { 25 | background-color: rgba(0, 0, 0, 0.8); 26 | font-size: 20px; 27 | text-align-last: center; 28 | border-radius: 5px; 29 | margin-left: 700px; 30 | margin-top: 215px; 31 | position: relative; 32 | } 33 | 34 | .btn.btn-md.btn-ghost 35 | { 36 | display: inline-block; 37 | } 38 | 39 | .btn.btn-md.btn-ghost.first 40 | { 41 | margin-left: 700px; 42 | } 43 | 44 | #timeTitle 45 | { 46 | margin-left: 500px; 47 | } 48 | 49 | #sbtBtn 50 | { 51 | position: relative; 52 | margin-left: 690px; 53 | width: 300px; 54 | height: 50px; 55 | border-radius: 5px; 56 | font-size: 15px; 57 | } 58 | 59 | .chartjs-wrapper 60 | { 61 | margin-left: 20px; 62 | } 63 | 64 | #graph 65 | { 66 | width: 55%; 67 | height: 350px; 68 | margin-top: 200px; 69 | position: absolute; 70 | 71 | } 72 | 73 | .btn.btn-md.btn-ghost.active 74 | { 75 | background-color: #4c51e0; 76 | color: #fff; 77 | } 78 | 79 | ::-webkit-scrollbar { 80 | width: 10px; 81 | } 82 | 83 | /* Track */ 84 | ::-webkit-scrollbar-track { 85 | box-shadow: inset 0 0 5px grey; 86 | } 87 | 88 | /* Handle */ 89 | ::-webkit-scrollbar-thumb { 90 | background: rgb(50, 50, 255); 91 | border-radius: 8px; 92 | } 93 | 94 | /* Handle on hover */ 95 | ::-webkit-scrollbar-thumb:hover { 96 | background: rgb(112, 116, 230); 97 | } -------------------------------------------------------------------------------- /cryptant/css/index.css: -------------------------------------------------------------------------------- 1 | ::-webkit-scrollbar { 2 | width: 10px; 3 | } 4 | 5 | /* Track */ 6 | ::-webkit-scrollbar-track { 7 | box-shadow: inset 0 0 5px grey; 8 | } 9 | 10 | /* Handle */ 11 | ::-webkit-scrollbar-thumb { 12 | background: rgb(50, 50, 255); 13 | border-radius: 8px; 14 | } 15 | 16 | /* Handle on hover */ 17 | ::-webkit-scrollbar-thumb:hover { 18 | background: rgb(112, 116, 230); 19 | } -------------------------------------------------------------------------------- /cryptant/css/liveprice.css: -------------------------------------------------------------------------------- 1 | #coin 2 | { 3 | position: relative; 4 | width: 285px; 5 | color: #fff; 6 | margin-right: 30px; 7 | } 8 | #main 9 | { 10 | position: relative; 11 | align-items: center; 12 | text-align: center; 13 | height: 100vh; 14 | padding-top: 150px; 15 | background-image: url("../img/backgrounds/bg-9.png"); 16 | background-repeat: no-repeat; 17 | background-position: left center; 18 | background-size: 440px; 19 | } 20 | #titlePrice 21 | { 22 | font-size: 5em; 23 | margin-bottom: 50px; 24 | font-weight: 700; 25 | text-transform: uppercase; 26 | } 27 | #sbtBtn 28 | { 29 | position: relative; 30 | width: 285px; 31 | height: 55px; 32 | font-size: 18px; 33 | font-weight: 500; 34 | border-radius: 5px; 35 | } 36 | 37 | select option { 38 | margin: 40px; 39 | background: rgba(0, 0, 0, 0.8); 40 | color: #fff; 41 | text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4); 42 | font-size: 15px; 43 | } 44 | 45 | select 46 | { 47 | background-color: rgba(0, 0, 0, 0.8); 48 | font-size: 20px; 49 | text-align-last: center; 50 | border-radius: 5px; 51 | } 52 | 53 | 54 | td, th { 55 | border: 1px solid #dddddd; 56 | padding: 8px; 57 | font-weight: 500; 58 | } 59 | 60 | 61 | #tableMain 62 | { 63 | margin-top: 30px; 64 | margin-left: auto; 65 | margin-right: auto; 66 | border-radius: 5%; 67 | width: 40%; 68 | height: 40%; 69 | background-color: rgba(0, 0, 0, 0.3); 70 | color: rgba(0, 0, 0, 0.3); 71 | } 72 | 73 | #firstCol 74 | { 75 | border-top-left-radius: 8px; 76 | } 77 | 78 | #secondCol 79 | { 80 | border-top-right-radius: 8px; 81 | } 82 | 83 | #percentageChangeTitle 84 | { 85 | border-bottom-left-radius: 8px; 86 | } 87 | 88 | #percentageChange 89 | { 90 | border-bottom-right-radius: 8px; 91 | } 92 | 93 | span 94 | { 95 | 96 | color: #FF0000; 97 | } 98 | 99 | ::-webkit-scrollbar { 100 | width: 10px; 101 | } 102 | 103 | /* Track */ 104 | ::-webkit-scrollbar-track { 105 | box-shadow: inset 0 0 5px grey; 106 | } 107 | 108 | /* Handle */ 109 | ::-webkit-scrollbar-thumb { 110 | background: rgb(50, 50, 255); 111 | border-radius: 8px; 112 | } 113 | 114 | /* Handle on hover */ 115 | ::-webkit-scrollbar-thumb:hover { 116 | background: rgb(112, 116, 230); 117 | } 118 | 119 | @media(max-width: 1300px) 120 | { 121 | #main 122 | { 123 | background-size: 250px; 124 | } 125 | } 126 | 127 | @media(max-width: 1200px) 128 | { 129 | #main 130 | { 131 | background-image: none; 132 | } 133 | } 134 | 135 | @media(max-width: 913px) 136 | { 137 | #titlePrice 138 | { 139 | margin-bottom: 0; 140 | } 141 | } 142 | 143 | @media(max-width: 400px) 144 | { 145 | #titlePrice 146 | { 147 | font-size: 3em; 148 | } 149 | } -------------------------------------------------------------------------------- /cryptant/css/news.css: -------------------------------------------------------------------------------- 1 | .img-responsive 2 | { 3 | max-width: 450px; 4 | max-height: 200px; 5 | } 6 | ::-webkit-scrollbar { 7 | width: 10px; 8 | } 9 | 10 | /* Track */ 11 | ::-webkit-scrollbar-track { 12 | box-shadow: inset 0 0 5px grey; 13 | } 14 | 15 | /* Handle */ 16 | ::-webkit-scrollbar-thumb { 17 | background: rgb(50, 50, 255); 18 | border-radius: 8px; 19 | } 20 | 21 | /* Handle on hover */ 22 | ::-webkit-scrollbar-thumb:hover { 23 | background: rgb(112, 116, 230); 24 | } -------------------------------------------------------------------------------- /cryptant/css/predictions.css: -------------------------------------------------------------------------------- 1 | #about 2 | { 3 | background-image: url("../img/backgrounds/bg-9.png"); 4 | background-repeat: no-repeat; 5 | background-position: right center; 6 | background-size: 440px; 7 | min-height: 90vh; 8 | } 9 | 10 | #mainBtn 11 | { 12 | text-transform: uppercase; 13 | position: absolute; 14 | margin-top: 500px; 15 | } 16 | 17 | #sbtBtn 18 | { 19 | position: relative; 20 | width: 285px; 21 | height: 55px; 22 | font-size: 18px; 23 | font-weight: 500; 24 | border-radius: 5px; 25 | } 26 | 27 | select option { 28 | margin: 40px; 29 | background: rgba(0, 0, 0, 0.8); 30 | color: #fff; 31 | text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4); 32 | font-size: 15px; 33 | } 34 | 35 | select 36 | { 37 | background-color: rgba(0, 0, 0, 0.8); 38 | font-size: 20px; 39 | text-align-last: center; 40 | border-radius: 5px; 41 | } 42 | 43 | 44 | td, th { 45 | border: 1px solid #dddddd; 46 | padding: 8px; 47 | font-weight: 500; 48 | } 49 | 50 | 51 | #tableMain 52 | { 53 | margin-top: 30px; 54 | margin-left: auto; 55 | margin-right: auto; 56 | border-radius: 5%; 57 | width: 40%; 58 | height: 40%; 59 | background-color: rgba(0, 0, 0, 0.3); 60 | color: rgba(0, 0, 0, 0.3); 61 | } 62 | 63 | #coin 64 | { 65 | position: relative; 66 | width: 285px; 67 | color: #fff; 68 | margin-right: 30px; 69 | } 70 | 71 | #main 72 | { 73 | align-items: center; 74 | position: relative; 75 | text-align: center; 76 | padding-top: 40px; 77 | height: 90vh; 78 | background-image: url("../img/backgrounds/bg-9.png"), url("../img/backgrounds/bg-10.png"); 79 | background-repeat: no-repeat, no-repeat; 80 | background-position: left center, right center; 81 | background-size: 300px, 200px; 82 | } 83 | 84 | #titlePredict 85 | { 86 | font-size: 5em; 87 | font-weight: 900; 88 | text-transform: uppercase; 89 | } 90 | 91 | #particular 92 | { 93 | border-top-left-radius: 8px; 94 | } 95 | 96 | #values 97 | { 98 | border-top-right-radius: 8px; 99 | } 100 | 101 | #conclusionTd 102 | { 103 | border-bottom-left-radius: 8px; 104 | } 105 | 106 | #conclusion 107 | { 108 | border-bottom-right-radius: 8px; 109 | } 110 | 111 | @media(max-width: 1200px) 112 | { 113 | #mainBtn 114 | { 115 | margin-top: 600px; 116 | } 117 | } 118 | 119 | @media(max-width: 992px) 120 | { 121 | #mainBtn 122 | { 123 | margin-top: 550px; 124 | } 125 | } 126 | 127 | @media(max-width: 980px) 128 | { 129 | #mainBtn 130 | { 131 | margin-top: 90px; 132 | } 133 | 134 | #about 135 | { 136 | background-size: 250px; 137 | background-position: right bottom; 138 | } 139 | 140 | #main 141 | { 142 | background-image: none, none; 143 | } 144 | } 145 | 146 | 147 | @media(max-width: 410px) 148 | { 149 | #about 150 | { 151 | background-image: none; 152 | } 153 | 154 | #mainBtn 155 | { 156 | margin-top: 30px; 157 | } 158 | 159 | #titlePredict 160 | { 161 | font-size: 3em; 162 | } 163 | } 164 | 165 | @media(max-width: 340px) 166 | { 167 | #mainBtn 168 | { 169 | visibility: hidden; 170 | } 171 | } 172 | 173 | ::-webkit-scrollbar { 174 | width: 10px; 175 | } 176 | 177 | /* Track */ 178 | ::-webkit-scrollbar-track { 179 | box-shadow: inset 0 0 5px grey; 180 | } 181 | 182 | /* Handle */ 183 | ::-webkit-scrollbar-thumb { 184 | background: rgb(50, 50, 255); 185 | border-radius: 8px; 186 | } 187 | 188 | /* Handle on hover */ 189 | ::-webkit-scrollbar-thumb:hover { 190 | background: rgb(112, 116, 230); 191 | } -------------------------------------------------------------------------------- /cryptant/css/topGainersLosers.css: -------------------------------------------------------------------------------- 1 | .loseCoinPercentage 2 | { 3 | color: #FF0000; 4 | } 5 | 6 | 7 | .gainCoinPercentage 8 | { 9 | color: #3cb02c; 10 | } 11 | 12 | 13 | #tablesDiv 14 | { 15 | display: flex; 16 | justify-content: center; 17 | align-items: center; 18 | background-image: url('../img/assets/up-down-arrow.png'); 19 | background-repeat: no-repeat; 20 | background-size: 200px 200px; 21 | background-position: center; 22 | } 23 | 24 | 25 | 26 | td, th 27 | { 28 | text-align: center; 29 | word-break: break-all; 30 | } 31 | 32 | 33 | 34 | #gainerTable 35 | { 36 | margin-right: 130px; 37 | } 38 | 39 | #loserTable 40 | { 41 | margin-left: 130px; 42 | } 43 | 44 | #moveToTableDiv 45 | { 46 | display: block; 47 | text-align: center; 48 | } 49 | 50 | 51 | 52 | 53 | ::-webkit-scrollbar { 54 | width: 10px; 55 | } 56 | 57 | /* Track */ 58 | ::-webkit-scrollbar-track { 59 | box-shadow: inset 0 0 5px grey; 60 | } 61 | 62 | /* Handle */ 63 | ::-webkit-scrollbar-thumb { 64 | background: rgb(50, 50, 255); 65 | border-radius: 8px; 66 | } 67 | 68 | /* Handle on hover */ 69 | ::-webkit-scrollbar-thumb:hover { 70 | background: rgb(112, 116, 230); 71 | } -------------------------------------------------------------------------------- /cryptant/fonts/et-icons/et-line.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/fonts/et-icons/et-line.eot -------------------------------------------------------------------------------- /cryptant/fonts/et-icons/et-line.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/fonts/et-icons/et-line.ttf -------------------------------------------------------------------------------- /cryptant/fonts/et-icons/et-line.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/fonts/et-icons/et-line.woff -------------------------------------------------------------------------------- /cryptant/fonts/et-icons/et-lined41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/fonts/et-icons/et-lined41d.eot -------------------------------------------------------------------------------- /cryptant/fonts/ion-icons/ionicons28b5.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/fonts/ion-icons/ionicons28b5.eot -------------------------------------------------------------------------------- /cryptant/fonts/ion-icons/ionicons28b5.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/fonts/ion-icons/ionicons28b5.ttf -------------------------------------------------------------------------------- /cryptant/fonts/ion-icons/ionicons28b5.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/fonts/ion-icons/ionicons28b5.woff -------------------------------------------------------------------------------- /cryptant/graphs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Cryptant | Candlestick Graphs 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 |
34 | 35 | 36 | 86 | 87 | 88 | 89 |
90 |
91 | # 92 |
93 | 94 |
95 |
96 | 97 |
98 | 99 |
100 |

Cryptant
Candlestick Graph

101 |

Get candlestick graph for any cryptocurrency.

102 | Get Started 103 | Know More about Candlesticks 104 |
105 | 106 |
107 |

Cryptant
Candlestick Graph

108 |

Get candlestick graph for any cryptocurrency.

109 | Get Started 110 | Know More about Candlesticks 111 |
112 | 113 |
114 |

Cryptant
Candlestick Graph

115 |

Get candlestick graph for any cryptocurrency.

116 | Get Started 117 | Know More about Candlesticks 118 |
119 | 120 |
121 |

Cryptant
Candlestick Graph

122 |

Get candlestick graph for any cryptocurrency.

123 | Get Started 124 | Know More about Candlesticks 125 |
126 | 127 |
128 | 129 |
130 |
131 |
132 | 133 | 134 | 135 | 136 | 137 |
138 |
Graph will appear here
139 | 140 | 180 |
181 |
182 |
Choose Time Interval
183 | 01m 184 | 05m 185 | 15m 186 |
187 | 01h 188 | 06h 189 | 01d 190 |
191 |
192 | 193 |
194 | 195 | 257 | 345 | 346 | 347 | -------------------------------------------------------------------------------- /cryptant/img/assets/et-line-icons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/et-line-icons.jpg -------------------------------------------------------------------------------- /cryptant/img/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/favicon.png -------------------------------------------------------------------------------- /cryptant/img/assets/ion-icons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/ion-icons.jpg -------------------------------------------------------------------------------- /cryptant/img/assets/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/logo-dark.png -------------------------------------------------------------------------------- /cryptant/img/assets/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/logo-light.png -------------------------------------------------------------------------------- /cryptant/img/assets/ogAI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/ogAI.png -------------------------------------------------------------------------------- /cryptant/img/assets/ogGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/ogGraph.png -------------------------------------------------------------------------------- /cryptant/img/assets/ogMain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/ogMain.jpg -------------------------------------------------------------------------------- /cryptant/img/assets/ogNews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/ogNews.png -------------------------------------------------------------------------------- /cryptant/img/assets/ogTop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/ogTop.jpg -------------------------------------------------------------------------------- /cryptant/img/assets/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/up-arrow.png -------------------------------------------------------------------------------- /cryptant/img/assets/up-down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/assets/up-down-arrow.png -------------------------------------------------------------------------------- /cryptant/img/backgrounds/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/backgrounds/bg-1.jpg -------------------------------------------------------------------------------- /cryptant/img/backgrounds/bg-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/backgrounds/bg-10.png -------------------------------------------------------------------------------- /cryptant/img/backgrounds/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/backgrounds/bg-2.jpg -------------------------------------------------------------------------------- /cryptant/img/backgrounds/bg-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/backgrounds/bg-7.jpg -------------------------------------------------------------------------------- /cryptant/img/backgrounds/bg-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/backgrounds/bg-8.jpg -------------------------------------------------------------------------------- /cryptant/img/backgrounds/bg-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/backgrounds/bg-9.png -------------------------------------------------------------------------------- /cryptant/img/blog/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/blog/1.jpg -------------------------------------------------------------------------------- /cryptant/img/blog/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/blog/2.jpg -------------------------------------------------------------------------------- /cryptant/img/blog/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/blog/3.jpg -------------------------------------------------------------------------------- /cryptant/img/blog/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/blog/4.jpg -------------------------------------------------------------------------------- /cryptant/img/blog/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/blog/5.jpg -------------------------------------------------------------------------------- /cryptant/img/video/thumbnail-youtube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techguy940/Cryptant/e697d947d44bb04a4e4af212daec1c449b55b3ae/cryptant/img/video/thumbnail-youtube.jpg -------------------------------------------------------------------------------- /cryptant/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Cryptant | Your Digital Crypto Assistant 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 | 78 | 79 | 80 | 81 |
82 |
83 | # 84 |
85 | 86 |
87 |
88 | 89 |
90 | 91 |
92 |

Cryptant
Your Digital Crypto Assistant

93 |

We suggest and advice how to invest and earn from cryptocurrencies.

94 | Get Started 95 |
96 | 97 |
98 |

Cryptant
Your Digital Crypto Assistant

99 |

We suggest and advice how to invest and earn from cryptocurrencies.

100 | Get Started 101 |
102 | 103 |
104 |

Cryptant
Your Digital Crypto Assistant

105 |

We suggest and advice how to invest and earn from cryptocurrencies.

106 | Get Started 107 |
108 | 109 |
110 |

Cryptant
Your Digital Crypto Assistant

111 |

We suggest and advice how to invest and earn from cryptocurrencies.

112 | Get Started 113 |
114 | 115 |
116 | 117 |
118 |
119 |
120 | 121 | 122 | 123 |
124 |
125 |
126 | 127 |
128 |

We Are Cryptant
Your Digital Crypto Assistant

129 |

We help people invest and earn from cryptocurrencies
and make people’s lives better. Helping people for a good deed.

130 |
131 | 132 |
133 | 134 | 135 |
136 |

We're Creative
Crafting With Love

137 |

We always welcome our users suggestions to improve our website and technologies to help people as much as we can :)

138 |
139 |
140 |
141 | 142 | 143 |
144 |

We're Cool Nerds
Coding With Fun

145 |

We always welcome people who want to be a part of our developers to help them learn more and earn more.

146 |
147 |
148 |
149 | 150 | 151 |
152 |

We're Passionate
Available When You Need Us

153 |

Our website is running 24/7 so people can get help and advices any time they need! We are also checking emails regaring to users issues and suggestions regularly

154 |
155 |
156 |
157 | 158 | 159 |
160 |

We're Professional
India Base

161 |

We are geeks from India who love to make interesting stuff and make money out of it, like cryptocurrencies ;).

162 |
163 |
164 | 165 |
166 |
167 |
168 | 169 | 170 | 171 |
172 |
173 | # 174 |
175 |
176 |
177 | 178 |
179 |

Our Products
Made to help everyone

180 |

We have several features on our website that help people from any country to learn and earn how to invest in cryptocurrencies and earn from the same. We always try our best to optimize our products for the best results possible.

181 |

Cryptocurrencies are the future of virtual currency, as per the data, cryptocurrencies such as Bitcoin (BTC), Ethereum (ETH) will surpass every currency even national currency and will be much profitable and portabe.

182 |
183 | 184 |
185 |
186 |
UI
187 |
188 |
189 | 85% 190 |
191 |
192 |
User Experience
193 |
194 |
195 | 100% 196 |
197 |
198 |
Web Design
199 |
200 |
201 | 70% 202 |
203 |
204 |
Profitable Advices
205 |
206 |
207 | 82% 208 |
209 |
210 |
211 |
212 | 213 |
214 |
215 |
216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 |
236 |
237 |
238 | 239 |
240 |

What We Provide
Our Products

241 |

Our highly skilled professional services.

242 |
243 | 244 |
245 | 246 | 247 |
248 |

AI Advice
Get the future predictions

249 |

Stuck on what cryptocurrency to buy? Use our AI to predict upcoming best cryptocurrencies.

250 | Take Me There 251 |
252 |
253 |
254 | 255 | 256 |
257 |

Current Price
Get the current prices

258 |

Get the live current price, high, low for any cryptocurrency.

259 |
260 | Take Me There 261 | 262 |
263 |
264 |
265 | 266 | 267 |
268 |

Cryptocurrency News
Get the latest news of cryptocurrencies market

269 |

Enhance your investment knowledge by reading news daily.

270 | Take Me There 271 | 272 |
273 |
274 | 275 |
276 | 277 | 278 |
279 |

Candlestick Graphs
Get Detailed Graph

280 |

Get Candlestick Graph for any cryptocurreny at one place.

281 |
282 | Take Me There 283 | 284 |
285 |
286 | 287 |
288 | 289 | 290 |
291 |

Top Gainers & Losers
Know the top gainers & losers

292 |

Know the top gainers and losers to have an estimate on what cryptocurrency to buy.

293 | Take Me There 294 | 295 |
296 |
297 | 298 |
299 | 300 | 301 |
302 |

API
Get JSON Data easily from our API

303 |

Get predictions, prices, gainers and more easily from our free-to-use API.

304 | Take Me There 305 | 306 |
307 |
308 | 309 | 310 |
311 |
312 |
313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 |
362 |
363 | # 364 |
365 |
366 |
367 | 368 |
369 |

Get Connected
Follow Us

370 |

Get connected with us on social networks!

371 |
372 | 373 | 411 |
412 |
413 |
414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 |
426 |
427 |
428 | 429 |
430 |

Get In Touch
Contact Us

431 |

Got some issues/suggestions? We would like to hear from you

432 |
433 | 434 |
435 |
436 | 437 |
438 | 439 |
440 | 441 |
442 |
443 | 444 |
445 |
446 | 447 |
448 |
449 | 450 |
451 |
452 | 453 |
454 | 455 |
456 |
457 | 458 |
459 |
460 |
461 | 462 | 463 | 464 | 465 | 466 | 467 | 468 | 469 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 478 | 479 | 480 | 481 | 482 | 483 | 498 | 499 | -------------------------------------------------------------------------------- /cryptant/js/scripts.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | "use strict"; 3 | 4 | function heroContentSlider() { 5 | var heroContSlider = $('.hero-content-slider'), 6 | autoplay = heroContSlider.data('autoplay'), 7 | autoplaySpeed = heroContSlider.data('speed'); 8 | if ($(window).width() > 992) { 9 | heroContSlider.owlCarousel({ 10 | animateOut: 'bounceOut', 11 | animateIn: 'bounceIn', 12 | autoplay: autoplay, 13 | autoplayTimeout: autoplaySpeed, 14 | items: 1, 15 | dots: false, 16 | mouseDrag: false, 17 | touchDrag: false, 18 | loop: true 19 | }); 20 | } else { 21 | heroContSlider.owlCarousel({ 22 | autoplay: false, 23 | items: 1, 24 | dots: false, 25 | mouseDrag: true, 26 | touchDrag: true, 27 | loop: true, 28 | autoHeight: true 29 | }); 30 | } 31 | } 32 | function heroContentSliderFade() { 33 | $('.hero-content-slider').css({ 'opacity': '1' }) 34 | } 35 | 36 | function heroSliderOwl() { 37 | var heroOwlSlider = $(".hero-slider"), 38 | autoplay = heroOwlSlider.data('autoplay'), 39 | autoplaySpeed = heroOwlSlider.data('speed'), 40 | touchSlide = heroOwlSlider.data('touch-drag'); 41 | heroOwlSlider.owlCarousel({ 42 | autoplay: autoplay, 43 | autoplayTimeout: autoplaySpeed, 44 | items: 1, 45 | mouseDrag: touchSlide, 46 | touchDrag: touchSlide, 47 | dots: false, 48 | nav: true, 49 | navSpeed: 500, 50 | loop: true, 51 | autoHeight : true, 52 | navText: ["", ""] 53 | }); 54 | if ($('.hero-fullscreen>div').hasClass('hero-slider')) { 55 | $('.hero-fullscreen').css({'padding': '0'}); 56 | } 57 | } 58 | 59 | function sliderOwl() { 60 | var owlSlider = $(".carousel"), 61 | autoplay = owlSlider.data('autoplay'), 62 | autoplaySpeed = owlSlider.data('speed'), 63 | touchSlide = owlSlider.data('touch-drag'), 64 | loopSlides = owlSlider.data('loop'); 65 | owlSlider.owlCarousel({ 66 | autoplay: autoplay, 67 | autoplayTimeout: autoplaySpeed, 68 | items: 1, 69 | mouseDrag: touchSlide, 70 | touchDrag: touchSlide, 71 | dots: true, 72 | nav: true, 73 | loop: loopSlides, 74 | autoHeight : true, 75 | navText: ["", ""], 76 | navRewind: true, 77 | slideBy : 'page' 78 | }); 79 | } 80 | 81 | function progressBars() { 82 | function progressBar() { 83 | $('.progress').each(function () { 84 | $(this).find('.progress-bar').animate({ 85 | width: $(this).attr('data-percent') 86 | }, 800); 87 | }); 88 | } 89 | if ($('.progress-bars').data('animate-on-scroll') === 'on') { 90 | $('.progress-bars').waypoint(function () { 91 | progressBar(); 92 | }, { offset: '100%', triggerOnce: true }); 93 | } else { 94 | progressBar(); 95 | } 96 | } 97 | 98 | function progressCircles() { 99 | function progressCircle() { 100 | var totalProgress, progress, circles; 101 | circles = document.querySelectorAll('.progress-svg'); 102 | for(var i = 0; i < circles.length; i++) { 103 | totalProgress = circles[i].querySelector('circle').getAttribute('stroke-dasharray'); 104 | progress = circles[i].parentElement.getAttribute('data-circle-percent'); 105 | circles[i].querySelector('.bar').style['stroke-dashoffset'] = totalProgress * progress / 100; 106 | } 107 | }; 108 | if ($('.progress-circles').data('animate-on-scroll') === 'on') { 109 | $('.progress-circle').waypoint(function () { 110 | progressCircle(); 111 | }, { 112 | offset: '70%', 113 | triggerOnce: true 114 | }); 115 | } else { 116 | progressCircle(); 117 | }; 118 | } 119 | 120 | function vossenIframes() { 121 | $('.video-container').click(function(){ 122 | $(this).addClass('reveal'); 123 | var videoImg = $(this).find('img'), 124 | videoIframe = $(this).find('iframe'), 125 | videoAttr = videoIframe.attr('data-video-embed'), 126 | videoPlay = videoAttr + "?autoplay=1&autoplay=true"; 127 | videoImg.animate({'opacity': 0}, 300); 128 | videoIframe.css('visibility', 'visible').attr('src', videoPlay); 129 | videoIframe[0].setAttribute('allowFullScreen', ''); 130 | }); 131 | } 132 | 133 | function teamSlider() { 134 | $(".team-slider").owlCarousel({ 135 | autoplay : false, 136 | items: 3, 137 | dots: true, 138 | responsiveRefreshRate: 200, 139 | responsive: { 140 | 0: { 141 | items: 1 142 | }, 143 | 600: { 144 | items: 2 145 | }, 146 | 1200: { 147 | items: 3 148 | } 149 | } 150 | }); 151 | } 152 | 153 | function quoteSlider() { 154 | var quoteOwl = $('.quote-slider'); 155 | quoteOwl.owlCarousel({ 156 | autoplay: false, 157 | autoplayTimeout: 3000, 158 | items: 1, 159 | dots: false, 160 | loop: true, 161 | nav: true, 162 | navText: ["", ""] 163 | }); 164 | } 165 | 166 | function vossenPortfolio() { 167 | var vosPortfolio = $('.vossen-portfolio'), 168 | initFilter = $('.vossen-portfolio-filters'), 169 | vossenFilters = $('.vossen-portfolio-filters li'), 170 | portfolioItems = $('.vossen-portfolio > div'), 171 | initialCat; 172 | 173 | initFilter.each(function () { 174 | var dataOption = $(this).attr('data-initial-filter'); 175 | $(this).attr('data-initial-filter', '.' + dataOption); 176 | if ($(initFilter).data('initial-filter') === '.*') { 177 | $(this).attr('data-initial-filter', '*'); 178 | } 179 | }); 180 | vossenFilters.not(':first').each(function () { 181 | var dataOption = $(this).attr('data-filter'); 182 | $(this).attr('data-filter', "." + dataOption); 183 | }); 184 | portfolioItems.each(function () { 185 | var dataOption = $(this).attr('data-filter'); 186 | $(this).addClass(dataOption); 187 | }); 188 | portfolioItems.waypoint(function () { 189 | portfolioItems.each(function (i) { 190 | var eachItem = $(this); 191 | setTimeout(function () { eachItem.addClass('reveal'); }, (i * 3) * 60); 192 | }); 193 | }, { offset: '100%', triggerOnce: true }); 194 | initialCat = $('.vossen-portfolio-filters').attr('data-initial-filter'); 195 | $('.vossen-portfolio-filters li[data-filter="' + initialCat + '"]').addClass('active'); 196 | vossenFilters.on('click', function () { 197 | $('.vossen-portfolio-filters li.active').removeClass('active'); 198 | $(this).addClass('active'); 199 | var filterValue = $(this).attr('data-filter'); 200 | vosPortfolio.isotope({ 201 | filter: filterValue 202 | }); 203 | }); 204 | var $grid = vosPortfolio.isotope({ 205 | itemSelector: '.vossen-portfolio > div', 206 | percentPosition: true, 207 | filter: initialCat, 208 | masonry: { 209 | columnWidth: '.vossen-portfolio > div' 210 | } 211 | }); 212 | $grid.imagesLoaded().progress( function() { 213 | $grid.isotope('layout'); 214 | }); 215 | } 216 | 217 | $(window).resize(function () { 218 | setTimeout(function(){ 219 | $('.vossen-portfolio-filters .active').trigger('click'); 220 | }, 600); 221 | }); 222 | 223 | function vossenPortfolio2() { 224 | 225 | var vosPortfolio = $('.portfolio-grid'), 226 | initFilter = $('.portfolio-filters'), 227 | vossenFilters = $('.portfolio-filters li'), 228 | portfolioItems = $('.work-item'), 229 | initialCat; 230 | 231 | initFilter.each(function () { 232 | var dataOption = $(this).attr('data-initial-filter'); 233 | $(this).attr('data-initial-filter', '.' + dataOption); 234 | if ($(initFilter).data('initial-filter') === '.*') { 235 | $(this).attr('data-initial-filter', '*'); 236 | } 237 | }); 238 | vossenFilters.not(':first').each(function () { 239 | var dataOption = $(this).attr('data-filter'); 240 | $(this).attr('data-filter', "." + dataOption); 241 | }); 242 | portfolioItems.each(function () { 243 | var dataOption = $(this).attr('data-filter'); 244 | $(this).addClass(dataOption); 245 | }); 246 | 247 | $('.portfolio-filters li[data-filter="' + initialCat + '"]').addClass('active'); 248 | 249 | vossenFilters.on('click', function () { 250 | $('.portfolio-filters li.active').removeClass('active'); 251 | $(this).addClass('active'); 252 | var filterValue = $(this).attr('data-filter'); 253 | vosPortfolio.isotope({ 254 | filter: filterValue 255 | }); 256 | }); 257 | 258 | 259 | var worksgrid = $('#works-grid'), 260 | filters = $('.portfolio-filters'); 261 | 262 | $(window).on('resize', function() { 263 | 264 | var windowWidth = Math.max($(window).width(), window.innerWidth), 265 | itemWidht = $('.grid-sizer').width(), 266 | itemHeight = Math.floor(itemWidht * 0.95), 267 | itemTallHeight = itemHeight * 2; 268 | 269 | if (windowWidth > 500) { 270 | $('.work-item', worksgrid).each(function() { 271 | if ($(this).hasClass('tall')) { 272 | $(this).css({ 273 | height : itemTallHeight 274 | }); 275 | } else if ($(this).hasClass('wide')) { 276 | $(this).css({ 277 | height : itemHeight 278 | }); 279 | } else if ($(this).hasClass('wide-tall')) { 280 | $(this).css({ 281 | height : itemTallHeight 282 | }); 283 | } else { 284 | $(this).css({ 285 | height : itemHeight 286 | }); 287 | } 288 | }); 289 | } else { 290 | $('.work-item', worksgrid).each(function() { 291 | if ($(this).hasClass('tall')) { 292 | $(this).css({ 293 | height : itemTallHeight 294 | }); 295 | } else if ($(this).hasClass('wide')) { 296 | $(this).css({ 297 | height : itemHeight / 2 298 | }); 299 | } else if ($(this).hasClass('wide-tall')) { 300 | $(this).css({ 301 | height : itemHeight 302 | }); 303 | } else { 304 | $(this).css({ 305 | height : itemHeight 306 | }); 307 | } 308 | }); 309 | } 310 | 311 | worksgrid.imagesLoaded(function() { 312 | worksgrid.isotope({ 313 | layoutMode: 'packery', 314 | itemSelector: '.work-item', 315 | transitionDuration: '0.3s', 316 | packery: { 317 | columnWidth: '.grid-sizer', 318 | }, 319 | }); 320 | }); 321 | 322 | }).resize(); 323 | 324 | worksgrid.isotope({}).imagesLoaded().progress( function() { 325 | vosPortfolio.addClass('reveal'); 326 | }); 327 | 328 | } 329 | 330 | function vossenPortfolioAjax() { 331 | 332 | var pageNumber = 0, 333 | workNumberToload = 5; 334 | 335 | var doneText = 'No More Works', 336 | loadText = 'Show More', 337 | loadingText = 'Loading...', 338 | errorText = 'Error! --- This feature will work only when site is on the server ---'; 339 | 340 | $('#show-more').on('click', function() { 341 | $(this).text(loadingText); 342 | 343 | setTimeout(function() { 344 | ajaxLoad(workNumberToload, pageNumber); 345 | }, 300); 346 | 347 | pageNumber++; 348 | return false; 349 | }); 350 | 351 | 352 | function ajaxLoad(workNumberToload, pageNumber) { 353 | var $loadButton = $('#show-more'); 354 | var dataString = 'numPosts=' + workNumberToload + '&pageNumber=' + pageNumber; 355 | 356 | $.ajax({ 357 | type: 'GET', 358 | data: dataString, 359 | dataType: 'html', 360 | url: $('.vossen-portfolio, .works-grid').data('more-items-location'), 361 | success: function(data) { 362 | var $data = $(data); 363 | var start_index = (pageNumber - 1) * workNumberToload; 364 | var end_index = + start_index + workNumberToload; 365 | 366 | if ($data.find('.vossen-portfolio > div, .work-item').slice(start_index).length) { 367 | var work = $data.find('.vossen-portfolio > div, .work-item').slice(start_index, end_index).addClass('reveal'); 368 | 369 | $('.vossen-portfolio, .works-grid').append(work).isotope('appended', work).resize(); 370 | 371 | setTimeout(function() { 372 | $loadButton.text(loadText); 373 | }, 300); 374 | 375 | } else { 376 | setTimeout(function() { 377 | $loadButton.text(doneText); 378 | }, 300); 379 | 380 | setTimeout(function () { 381 | $( "#show-more" ).animate({ 382 | opacity: 0 383 | }, 400 ).css({"cursor": "default"}); 384 | }, 1500); 385 | } 386 | }, 387 | 388 | error: function (jqXHR, textStatus, errorThrown) { 389 | console.log(jqXHR + " :: " + textStatus + " :: " + errorThrown); 390 | 391 | setTimeout(function() { 392 | $loadButton.removeClass('ss-loading'); 393 | $loadButton.text(errorText); 394 | }, 300); 395 | 396 | } 397 | }); 398 | } 399 | } 400 | 401 | function testimonialSlider() { 402 | var testimonialsOwl = $('.testimonials'), 403 | autoplay = testimonialsOwl.data('autoplay'), 404 | autoplaySpeed = testimonialsOwl.data('speed'); 405 | testimonialsOwl.owlCarousel({ 406 | autoplay : autoplay, 407 | autoplayTimeout: autoplaySpeed, 408 | autoplaySpeed: 700, 409 | loop: true, 410 | items: 1, 411 | dots: true, 412 | dotsSpeed: 400 413 | }); 414 | } 415 | 416 | function clientsSlider() { 417 | var clientSlider = $(".clients-slider"), 418 | autoplay = clientSlider.data('autoplay'), 419 | autoplaySpeed = clientSlider.data('speed'); 420 | clientSlider.owlCarousel({ 421 | autoplay : autoplay, 422 | autoplayTimeout: autoplaySpeed, 423 | loop: false, 424 | dots: false, 425 | nav: false, 426 | responsiveRefreshRate: 200, 427 | responsive: { 428 | 0: { 429 | items: 2 430 | }, 431 | 600: { 432 | items: 5 433 | }, 434 | 1200: { 435 | items: 6 436 | } 437 | } 438 | }); 439 | } 440 | 441 | function contactForm() { 442 | $('#contactform').submit(function () { 443 | var action = 'php/contact-form.php'; 444 | $("#message-info").slideUp(250, function () { 445 | $('#message-info').hide(); 446 | $('#submit') 447 | .after('
') 448 | .attr('disabled', 'disabled'); 449 | $.post(action, { 450 | name: $('#name').val(), 451 | email: $('#email').val(), 452 | phone: $('#phone').val(), 453 | message: $('#message').val() 454 | }, 455 | function (data) { 456 | document.getElementById('message-info').innerHTML = data; 457 | $('#message-info').slideDown(250); 458 | $('#contactform .loader div').fadeOut('slow', function() { 459 | $(this).remove(); 460 | }); 461 | $('#submit').removeAttr('disabled'); 462 | if (data.match('success') !== null) { 463 | $('#contactform').slideUp(850, 'easeInOutExpo'); 464 | } 465 | }); 466 | }); 467 | return false; 468 | }); 469 | } 470 | 471 | function subscribeForm() { 472 | $('#subscribe-form,#subscribe-form-2').on('submit', function (e) { 473 | e.preventDefault(); 474 | var $el = $(this), 475 | $alert = $el.find('.form-validation'), 476 | $submit = $el.find('button'), 477 | action = $el.attr('action'); 478 | $submit.button('loading'); 479 | $alert.removeClass('alert-danger alert-success'); 480 | $alert.html(''); 481 | $.ajax({ 482 | type : 'POST', 483 | url : action, 484 | data : $el.serialize() + '&ajax=1', 485 | dataType : 'JSON', 486 | success : function (response) { 487 | if (response.status === 'error') { 488 | $alert.html(response.message); 489 | $alert.addClass('alert-danger').fadeIn(500); 490 | } else { 491 | $el.trigger('reset'); 492 | $alert.html(response.message); 493 | $alert.addClass('alert-success').fadeIn(500); 494 | } 495 | $submit.button('reset'); 496 | } 497 | }); 498 | }); 499 | } 500 | 501 | function vosMap() { 502 | $('#vossen-map').waypoint(function () { 503 | initVossenMaps() 504 | }, { offset: '100%', triggerOnce: true }); 505 | } 506 | 507 | function vossenHeader() { 508 | $('.nav li.dropdown>a, .dropdown-submenu>a').on('click', function () { 509 | $(this).closest('.dropdown').siblings().removeClass('open'); 510 | $(this).closest('.dropdown').toggleClass('open'); 511 | return false; 512 | }); 513 | $('.nav li a, .btn-scroll').on('click', function () { 514 | var $anchor = $(this); 515 | function scrollToAnchor() { 516 | $('html, body').stop().animate({ 517 | scrollTop: $($anchor.attr('href')).offset().top - offsetVar 518 | }, 1000, 'easeInOutExpo'); 519 | event.preventDefault(); 520 | } 521 | if ($(window).width() > 992) { 522 | var offsetVar = '59'; 523 | scrollToAnchor(); 524 | } else { 525 | var offsetVar = '0'; 526 | scrollToAnchor(); 527 | } 528 | }); 529 | function navSmall() { 530 | $(window).scroll(function (){ 531 | if ($(window).scrollTop() > 70) { 532 | $('nav').addClass("nav-small"); 533 | } else { 534 | $('nav').removeClass("nav-small"); 535 | } 536 | }); 537 | } 538 | if ($('nav').data('animation') === 'hiding') { 539 | var vosWindow = $(window); 540 | var navPosition = vosWindow.scrollTop(); 541 | vosWindow.scroll(function() { 542 | if(vosWindow.scrollTop() > navPosition) { 543 | $('nav').removeClass('nav-down').addClass('nav-up'); 544 | } else { 545 | $('nav').removeClass('nav-up').addClass('nav-down'); 546 | } 547 | navPosition = vosWindow.scrollTop(); 548 | }); 549 | navSmall(); 550 | } else { 551 | navSmall(); 552 | } 553 | $('.scroll-top').on('click', function () { 554 | $('html, body').stop().animate({ scrollTop: 0 }, 2000, 'easeInOutExpo'); 555 | return false; 556 | }); 557 | function elementsAnchor() { 558 | var hash = window.location.hash; 559 | if (hash != '') { 560 | setTimeout(function() { 561 | $('html, body').stop().animate({ 562 | scrollTop: $(hash).offset().top - 59 563 | }, 1000, 'easeInOutExpo'); 564 | history.pushState('', document.title, window.location.pathname); 565 | }, 500); 566 | } 567 | } elementsAnchor(); 568 | } 569 | 570 | function bootstrapTools() { 571 | $('#accordion,#accordion2').on('show.bs.collapse', function () { 572 | $('#accordion .in').collapse('hide'); 573 | }); 574 | $("[data-toggle='tooltip']").tooltip(); 575 | $('#buttonTabs a,#iconTabs a').click(function (e) { 576 | e.preventDefault(); 577 | $(this).tab('show'); 578 | }); 579 | } 580 | 581 | function twitterFeedSlider() { 582 | if ($('#twitter-feed-slider').length) { 583 | var twitterUser, twitterNumber, twitterFeedSlider; 584 | twitterUser = $('#twitter-feed-slider').attr('data-twitter-widget-id'); 585 | twitterNumber = $('#twitter-feed-slider').attr('data-max-tweets'); 586 | twitterFeedSlider = { 587 | "id": twitterUser, 588 | "domId": 'twitter-feed-slider', 589 | "maxTweets": twitterNumber, 590 | "enableLinks": true, 591 | "showImages": false 592 | }; 593 | twitterFetcher.fetch(twitterFeedSlider); 594 | } 595 | } 596 | 597 | function twitterFeedSliderInit() { 598 | if ($('#twitter-feed-slider').length) { 599 | $('#twitter-feed-slider ul').addClass('twitter-feed-slider navigation-thin'); 600 | var twitterAutoSpeed = $('#twitter-feed-slider').attr('data-slider-speed'); 601 | $('.twitter-feed-slider').owlCarousel({ 602 | autoplay: true, 603 | autoplayTimeout: twitterAutoSpeed, 604 | items: 1, 605 | dots: false, 606 | mouseDrag: true, 607 | touchDrag: true, 608 | loop: true 609 | }); 610 | } 611 | } 612 | 613 | function twitterFeedList() { 614 | if ($('#twitter-feed-list').length) { 615 | var twitterUser, twitterNumber, twitterFeedList; 616 | twitterUser = $('#twitter-feed-list').attr('data-twitter-widget-id'); 617 | twitterNumber = $('#twitter-feed-list').attr('data-max-tweets'); 618 | twitterFeedList = { 619 | "id": twitterUser, 620 | "domId": 'twitter-feed-list', 621 | "maxTweets": twitterNumber, 622 | "enableLinks": true, 623 | "showImages": false 624 | }; 625 | twitterFetcher.fetch(twitterFeedList); 626 | } 627 | } 628 | 629 | function countUp() { 630 | $('#fun-facts').waypoint(function () { 631 | $('.counter h1').each(function() { 632 | var $this = $(this), 633 | countTo = $this.attr('data-count'); 634 | $({ countNum: $this.text()}).animate({ 635 | countNum: countTo 636 | }, { 637 | duration: 1700, 638 | easing:'linear', 639 | step: function() { 640 | $this.text(Math.floor(this.countNum)); 641 | }, 642 | complete: function() { 643 | $this.text(this.countNum); 644 | } 645 | }); 646 | }); 647 | }, { offset: '100%', triggerOnce: true }); 648 | } 649 | 650 | function countdown() { 651 | var dateUser = $("#countdown-timer").attr('data-date'), 652 | deadline = new Date(dateUser); 653 | function updateClock() { 654 | var today = Date(), 655 | diff = Date.parse(deadline) - Date.parse(today); 656 | if (diff <= 0) { 657 | clearInterval(interval); 658 | } else { 659 | var seconds = Math.floor((diff / 1000) % 60), 660 | minutes = Math.floor((diff / 1000 / 60) % 60), 661 | hours = Math.floor((diff / 1000 / 60 / 60) % 24), 662 | days = Math.floor(diff / (1000 * 60 * 60 * 24) % 30.5), 663 | months = Math.floor(diff / (1000 * 60 * 60 * 24 * 30.5) % 12); 664 | $("#months").text( ('0' + months).slice(-2) + " ," ); 665 | $("#days").text(('0' + days).slice(-2)); 666 | $("#hours").text(('0' + hours).slice(-2)); 667 | $("#minutes").text(('0' + minutes).slice(-2)); 668 | $("#seconds").text(('0' + seconds).slice(-2)); 669 | } 670 | } 671 | var interval = setInterval(updateClock, 1000); 672 | } 673 | 674 | function vossenBlogGrid() { 675 | var vosPortfolio = $('.vossen-blog-grid'), 676 | portfolioItems = $('.vossen-blog-grid > div'); 677 | portfolioItems.each(function () { 678 | var dataOption = $(this).attr('data-filter'); 679 | $(this).addClass(dataOption); 680 | }); 681 | portfolioItems.waypoint(function () { 682 | portfolioItems.each(function (i) { 683 | var eachItem = $(this); 684 | setTimeout(function () { eachItem.addClass('reveal'); }, (i * 3) * 60); 685 | }); 686 | }, { offset: '100%', triggerOnce: true }); 687 | vosPortfolio.isotope({ 688 | itemSelector: '.vossen-blog-grid > div', 689 | percentPosition: true, 690 | masonry: { 691 | columnWidth: '.vossen-blog-grid > div' 692 | } 693 | }); 694 | var $bloggrid = vosPortfolio.isotope({ 695 | itemSelector: '.vossen-blog-grid > div', 696 | percentPosition: true, 697 | masonry: { 698 | columnWidth: '.vossen-blog-grid > div' 699 | } 700 | }); 701 | $bloggrid.imagesLoaded().progress( function() { 702 | $bloggrid.isotope('layout'); 703 | }); 704 | } 705 | 706 | function lightbox() { 707 | $('.lightbox').magnificPopup({ 708 | delegate: 'a', 709 | type: 'image', 710 | gallery:{ 711 | enabled:true, 712 | arrowMarkup: '', 713 | }, 714 | mainClass: 'mfp-zoom-in', 715 | removalDelay: 500, 716 | callbacks: { 717 | beforeOpen: function() { 718 | this.st.image.markup = this.st.image.markup.replace('mfp-figure', 'mfp-figure mfp-with-anim'); 719 | } 720 | }, 721 | closeMarkup: '', 722 | midClick: true 723 | }); 724 | } 725 | 726 | $(document).ready(function () { 727 | $.when(heroContentSlider()).then(heroContentSliderFade()); 728 | heroSliderOwl(); 729 | progressBars(); 730 | progressCircles(); 731 | teamSlider(); 732 | countUp(); 733 | vossenIframes(); 734 | quoteSlider(); 735 | parallaxVossen(); 736 | vossenPortfolio(); 737 | vossenPortfolio2(); 738 | vossenPortfolioAjax(); 739 | testimonialSlider(); 740 | clientsSlider(); 741 | contactForm(); 742 | subscribeForm(); 743 | vosMap(); 744 | sliderOwl(); 745 | vossenHeader(); 746 | bootstrapTools(); 747 | twitterFeedSlider(); 748 | twitterFeedList(); 749 | countdown(); 750 | vossenBlogGrid(); 751 | lightbox(); 752 | }); 753 | 754 | $(window).load(function () { 755 | twitterFeedSliderInit(); 756 | }); 757 | 758 | $(window).on('scroll', function () { 759 | 760 | }); 761 | 762 | }(jQuery)); 763 | -------------------------------------------------------------------------------- /cryptant/livePrice.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | Cryptant | Live Prices 23 | 24 | 25 | 26 |
27 | 28 | 29 | 79 | 80 | 81 | 82 |
83 |
84 | # 85 |
86 | 87 |
88 |
89 | 90 |
91 | 92 |
93 |

Cryptant
Live Prices

94 |

Get the current price for any cryptocurrency.

95 | Get Started 96 |
97 | 98 |
99 |

Cryptant
Live Prices

100 |

Get the current price for any cryptocurrency.

101 | Get Started 102 |
103 | 104 |
105 |

Cryptant
Live Prices

106 |

Get the current price for any cryptocurrency.

107 | Get Started 108 |
109 | 110 |
111 |

Cryptant
Live Prices

112 |

Get the current price for any cryptocurrency.

113 | Get Started 114 |
115 | 116 |
117 | 118 |
119 |
120 |
121 | 122 | 123 | 124 | 125 |
126 |

Live Prices

127 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 |
ParticularsValues
Coin Name...
Coin Symbol...
Price (BTC)...
Price ($)...
Percentage Change in last 24 hours...
402 | 403 |
404 | 405 | 435 | -------------------------------------------------------------------------------- /cryptant/news.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Cryptant | Cryptocurrency News 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 80 | 81 | 82 | 83 |
84 |
85 |
86 | 87 |
88 |

Cryptant
Latest Cryptocurrency News

89 | 90 |
91 | 92 | 93 |
94 | 95 | 96 |
97 | 98 | 99 |
100 |
101 | # 102 |
103 |
104 | 105 |
106 |
In Cryptocurrency
107 |

Fullwidth Post

108 |
109 | 110 |
111 |
112 | 113 |
114 |
115 | # 116 |
117 |
118 | 119 |
120 |
In Cryptocurrency
121 |

Fullwidth Post

122 |
123 | 124 |
125 |
126 | 127 |
128 |
129 | # 130 |
131 |
132 | 133 |
134 |
In Cryptocurrency
135 |

Fullwidth Post

136 |
137 | 138 |
139 |
140 | 141 |
142 |
143 | # 144 |
145 |
146 | 147 |
148 |
In Cryptocurrency
149 |

Fullwidth Post

150 |
151 | 152 |
153 |
154 | 155 |
156 |
157 | # 158 |
159 |
160 | 161 |
162 |
In Cryptocurrency
163 |

Fullwidth Post

164 |
165 | 166 |
167 |
168 | 169 |
170 |
171 | # 172 |
173 |
174 | 175 |
176 |
In Cryptocurrency
177 |

Fullwidth Post

178 |
179 | 180 |
181 |
182 | 183 |
184 |
185 | # 186 |
187 |
188 | 189 |
190 |
In Cryptocurrency
191 |

Fullwidth Post

192 |
193 | 194 |
195 |
196 | 197 |
198 |
199 | # 200 |
201 |
202 | 203 |
204 |
In Cryptocurrency
205 |

Fullwidth Post

206 |
207 | 208 |
209 |
210 | 211 |
212 |
213 | # 214 |
215 |
216 | 217 |
218 |
In Cryptocurrency
219 |

Fullwidth Post

220 |
221 | 222 |
223 |
224 | 225 | 226 | 227 |
228 | 229 |
230 | 231 |
232 |
233 |
234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 274 | 275 | 276 | -------------------------------------------------------------------------------- /cryptant/predictions.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Cryptant | AI Advice 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 | 81 | 82 | 83 | 84 |
85 |
86 | # 87 |
88 | 89 |
90 |
91 | 92 |
93 | 94 |
95 |

Cryptant
AI Advice

96 |

Get predictions for cryptocurrencies from our AI.

97 | Get Started 98 |
99 | 100 |
101 |

Cryptant
AI Advice

102 |

Get predictions for cryptocurrencies from our AI.

103 | Get Started 104 |
105 | 106 |
107 |

Cryptant
AI Advice

108 |

Get predictions for cryptocurrencies from our AI.

109 | Get Started 110 |
111 | 112 |
113 |

Cryptant
AI Advice

114 |

Get predictions for cryptocurrencies from our AI.

115 | Get Started 116 |
117 | 118 |
119 | 120 |
121 |
122 |
123 | 124 | 125 | 126 | 127 | 128 |
129 |
130 | 131 |
132 |

Cryptant
AI Advice

133 |
134 |
135 |

Stuck on what cryptocurrency to buy and invest in to earn the maximum? Have no prior knowledge in investing in cryptocurrencies? We got your back.

136 |

Cryptant provides a free AI advicer for almost every cryptocurrency and gives you the best possible result with options like whether to buy or sell, how much time period to hold the cryptocurrencies, average closing price of last 10 days and many others. All these responses comes from our highly trained AI made just for our users profit.

137 |

Note: Market prices are decided on external forces too like natural calamities!

138 |
139 | Get Started 140 |
141 |
142 |
143 | 144 |
145 |

Prediction

146 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 |
ParticularsValues
Coin Symbol...
Buy...
Sell...
Average of last 10 days [Open]...
Average of last 10 days [Close]...
Difference of 10 days...
Holding Period...
Conclusion...
227 |
228 |
229 |
230 |
231 | 232 | 279 | -------------------------------------------------------------------------------- /cryptant/topGainersLosers.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Cryptant | Top Gainers & Losers 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 | 80 | 81 | 82 | 83 |
84 |
85 | # 86 |
87 | 88 |
89 |
90 | 91 |
92 | 93 |
94 |

Cryptant
Top Gainers & Losers

95 |

View the highest gainer and loser coins for the past 24 hours.

96 | Get Started 97 |
98 | 99 |
100 |

Cryptant
Top Gainers & Losers

101 |

View the highest gainer and loser coins for the past 24 hours.

102 | Get Started 103 |
104 | 105 |
106 |

Cryptant
Top Gainers & Losers

107 |

View the highest gainer and loser coins for the past 24 hours.

108 | Get Started 109 |
110 | 111 |
112 |

Cryptant
Top Gainers & Losers

113 |

View the highest gainer and loser coins for the past 24 hours.

114 | Get Started 115 |
116 | 117 |
118 | 119 |
120 |
121 |
122 | 123 | 124 |
125 |
126 |
127 | 128 |
129 |

Cryptant
What are Top Gainers & Losers?

130 |
131 |
132 |
133 |
134 |
135 |
136 | 137 | 138 |
139 |

Gainers
What are Gainers?

140 |

Cryptocurrencies which gain the maximum percentage in their buying price are termed as Top Gainers. It is advisable to invest in these currencies once they lose some market value. Some currencies maybe gaining great profit from the past days, this usually means they are about to lose some value.

141 |
142 |
143 |
144 | 145 | 146 |
147 |

Losers
What are Losers?

148 |

Cryptocurrencies which lose the maximum percentage in their buying price are termed as Top Losers. It is advisable to invest in these currencies immediately as they already lost their market value. Some currencies are very unstable, it is advisable to invest for a short-term profit in these currencies.

149 |
150 |
151 |
152 |
153 |
154 | 157 |
158 | 159 |
160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 |
Coin NameGain PercentageCurrent Price ($)
Coin
0%
$ 0
Coin
0%
$ 0
Coin
0%
$ 0
Coin
0%
$ 0
Coin
0%
$ 0
Coin
0%
$ 0
Coin
0%
$ 0
Coin
0%
$ 0
221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 |
Coin NameLose PercentageCurrent Price ($)
Coin0%
$ 0
Coin0%
$ 0
Coin0%
$ 0
Coin0%
$ 0
Coin0%
$ 0
Coin0%
$ 0
Coin0%
$ 0
Coin0%
$ 0
278 |
279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 317 | 318 | --------------------------------------------------------------------------------