-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
905 lines (638 loc) · 25.5 KB
/
index.html
1
2
3
4
5
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
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
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
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
370
371
372
373
374
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="ziheng's Blog">
<meta name="keyword" content="blog">
<meta name="google-site-verification" content="k8kEwQr5uL4wgMXhsZcUzGeY-tvr8yd23gMfzGcxqrE" />
<link rel="shortcut icon" href="/img/favicon.png">
<link rel="canonical" href="https://zihengcat.github.io/">
<title>
zihengCat
</title>
<!-- Bootstrap Core CSS -->
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/hux-blog.css">
<!-- Font-Awesome Fonts -->
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- ga & ba script hook -->
<script></script>
<meta name="generator" content="Hexo 5.4.0"></head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
ziheng's Blog
</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<!-- Known Issue, found by Hux:
<nav>'s height woule be hold on by its content.
so, when navbar scale out, the <nav> will cover tags.
also mask any touch event of tags, unfortunately.
-->
<div id="huxblog_navbar">
<div class="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/">Home</a>
</li>
<li>
<a href="/about/">
About
</a>
</li>
<li>
<a href="/archives/">
Archives
</a>
</li>
<li>
<a href="/tags/">
Tags
</a>
</li>
</ul>
</div>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<script>
// Drop Bootstarp low-performance Navbar
// Use customize navbar with high-quality material design animation
// in high-perf jank-free CSS3 implementation
var $body = document.body;
var $toggle = document.querySelector('.navbar-toggle');
var $navbar = document.querySelector('#huxblog_navbar');
var $collapse = document.querySelector('.navbar-collapse');
$toggle.addEventListener('click', handleMagic)
function handleMagic(e){
if ($navbar.className.indexOf('in') > 0) {
// CLOSE
$navbar.className = " ";
// wait until animation end.
setTimeout(function(){
// prevent frequently toggle
if($navbar.className.indexOf('in') < 0) {
$collapse.style.height = "0px";
}
},400)
} else {
// OPEN
$collapse.style.height = "auto";
$navbar.className += " in";
}
}
</script>
<!-- Page Header -->
<header class="intro-header" style="background-image: url('/img/home-bg-d.png')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1 ">
<div class="site-heading">
<h1>ziheng's Blog</h1>
<span class="subheading">zihengCat is here!</span>
</div>
</div>
</div>
</div>
</header>
<!-- Main Content -->
<div class="container">
<div class="row">
<!-- USE SIDEBAR -->
<!-- Post Container -->
<div class="
col-lg-8 col-lg-offset-1
col-md-8 col-md-offset-1
col-sm-12
col-xs-12
post-container">
<!-- Main Content -->
<div class="post-preview">
<a href="/2022/03/29/day-trading-recap-2022-03-28/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2022.03.28
</h2>
<h3 class="post-subtitle">
Day Trading Recap - 2022.03.28
</h3>
<div class="post-content-preview">
复盘开仓标的:
iShares Russell 2000 ETF(NYSE:IWM)
iShares Russell 2000 ETF(NYSE:IWM)
周一交易日,有 SPY、QQQ、IWM 当日到期的末日期权可做,选了罗素 IWM 。
目前,IWM 仍在高位震荡,箱体底部 203 附近有支撑。
交易策略:卖出当日到期的 PUT 看跌期权,目标价 202,期权权利金收益吃满。
...
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2022-03-29
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2022/02/10/day-trade-beginner-retrospect-2022-02-09/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2022.02.09
</h2>
<h3 class="post-subtitle">
Day Trade Beginner's Retrospect - 2022.02.09
</h3>
<div class="post-content-preview">
复盘交易标的:
Moving Image Technologies(NYSE:MITQ)
Zosano Pharma(NASDAQ:ZSAN)
Moving Image Technologies(NYSE:MITQ)
毛票,财报利好,被庄家炒了起来。
交易策略:日内交易。
Zosano Pharma(NASDAQ:ZSAN)
毛票,跌幅超 50% 的毛票。
交易策略:Scalping 做......
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2022-02-10
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2022/02/09/day-trade-beginner-retrospect-2022-02-08/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2022.02.08
</h2>
<h3 class="post-subtitle">
Day Trade Beginner's Retrospect - 2022.02.08
</h3>
<div class="post-content-preview">
复盘交易标的:
SelectQuote(NYSE:SLQT)
Anghami(NASDAQ:ANGH)
Lemonade(NYSE:LMND)
SelectQuote(NYSE:SLQT)
一家科技保险公司,昨日盘后财报暴雷,今日暴跌50%,暴跌股总是存在不错的日内交易机会。
交易策略:日内交易,开盘低位入货,一波小拉升后止盈离场。
Anghami(NASDAQ:ANGH)
似乎是一家刚......
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2022-02-09
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2021/12/31/day-trade-beginner-retrospect-2021-12-30/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2021.12.30
</h2>
<h3 class="post-subtitle">
Day Trade Beginner's Retrospect - 2021.12.30
</h3>
<div class="post-content-preview">
复盘交易标的:
Alibaba Group(NYSE:BABA)
Lemonade(NYSE:LMND)
Biogen(NASDAQ:BIIB)
Alibaba Group(NYSE:BABA)
中概股们今日迎来强势反弹,不错。
交易策略:卖出本周到期的 PUT 看跌期权,目标价 110 。
Lemonade(NYSE:LMND)
柠檬水今天在 40 位置触底反弹,精准预判,
交易策略:......
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2021-12-31
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2021/12/28/day-trader-beginner-retrospect-2021-12-27/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2021.12.27
</h2>
<h3 class="post-subtitle">
Day Trader Beginner's Retrospect - 2021.12.27
</h3>
<div class="post-content-preview">
复盘交易标的:
Allakos(NASDAQ:ALLK)
DiDi Global(NYSE:DIDI)
Lemonade(NYSE:LMND)
Allakos(NASDAQ:ALLK)
继续做这支暴跌后的生物医药小盘股,今天整个生物医药板块下行,该票也在 10 块附近波动。
盘中做了 2 单,盈利数十。
卖出明年 1 月底到期的 PUT 看跌期权,目标价 7.5 。该公司账面资金 5 亿......
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2021-12-28
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2021/12/24/day-trader-beginner-retrospect-2021-12-23/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2021.12.23
</h2>
<h3 class="post-subtitle">
Day Trader Beginner's Retrospect - 2021.12.23
</h3>
<div class="post-content-preview">
复盘交易标的:
Alibaba Group(NYSE:BABA)
Allakos(NASDAQ:ALLK)
DiDi Global(NYSE:DIDI)
Alibaba Group(NYSE:BABA)
先前卖出的阿里巴巴看跌期权今日尽数到期,盈利确认。
下周继续沽空中概。
Allakos(NASDAQ:ALLK)
昨日暴跌 90% 的生物医药小盘股,今天果然迎来了一波大反弹,不错不......
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2021-12-24
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2021/12/23/day-trader-beginner-retrospect-2021-12-22/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2021.12.22
</h2>
<h3 class="post-subtitle">
Day Trader Beginner's Retrospect - 2021.12.22
</h3>
<div class="post-content-preview">
复盘开仓标的:
Alibaba Group(NYSE:BABA)
Allakos(NASDAQ:ALLK)
Alibaba Group(NYSE:BABA)
中概龙头阿里巴巴今日受利空消息打击,低开震荡走势。
还是秉持先前的判断,中概还没有跌到底。
交易策略:继续加沽,卖出本周到期的 PUT 看跌期权,目标价 110。
Allakos(NASDAQ:ALLK)
某生物医药企业,爆出药品研......
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2021-12-23
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2021/12/22/day-trader-beginner-retrospect-2021-12-21/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2021.12.21
</h2>
<h3 class="post-subtitle">
Day Trader Beginner's Retrospect - 2021.12.21
</h3>
<div class="post-content-preview">
复盘开仓标的:
Powerbridge Technologies(NASDAQ:PBTS)
Powerbridge Technologies(NASDAQ:PBTS)
中丐毛票,随手炒了几把:0.640 买入,0.645 卖出;0.610 买入,0.620 卖出。
发现没啥流动性,不好玩。
总结大盘回暖,好机会很多,结果脑袋一粘枕头睡着了… 只能被动吃吃期权收益喽。
...
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2021-12-22
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2021/12/21/day-trader-beginner-retrospect-2021-12-20/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2021.12.20
</h2>
<h3 class="post-subtitle">
Day Trader Beginner's Retrospect - 2021.12.20
</h3>
<div class="post-content-preview">
复盘开仓标的:
iShares Russell 2000 ETF(NYSE:IWM)
Alibaba Group(NYSE:BABA)
iShares Russell 2000 ETF(NYSE:IWM)
周一、周三、周五做罗素 IWM 期权,当日到期,风险较小。
今年一整年,罗素 IWM 都处在一个巨大的箱体震荡中,如今,罗素 IWM 又回踩到了箱体底部支撑的位置(207 附近),支撑......
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2021-12-21
</p>
</div>
<hr>
<div class="post-preview">
<a href="/2021/12/18/day-trader-beginner-retrospect-2021-12-17/">
<h2 class="post-title">
萌新 DT 复盘笔记 - 2021.12.17
</h2>
<h3 class="post-subtitle">
Day Trader Beginner's Retrospect - 2021.12.17
</h3>
<div class="post-content-preview">
复盘开仓标的:
Boeing(NYSE:BA)
Everbridge(NASDAQ:EVBG)
Boeing(NYSE:BA)
波音,美国航天军工的代表企业,最近频频爆出利空消息,股价一路走低,下跌量能部分释放。技术面来看,本周跌破前低 188 概率较小。
卖出本周到期的 PUT 价外期权,目标价 185 ,期权权利金收益吃满。
Everbridge(NASDAQ:EVBG)
一家做企......
</div>
</a>
<p class="post-meta">
Posted by zihengCat on
2021-12-18
</p>
</div>
<hr>
<!-- Pager -->
<ul class="pager">
<li class="next">
<a href="/page/2/">Older Posts →</a>
</li>
</ul>
</div>
<!-- Sidebar Container -->
<div class="
col-lg-3 col-lg-offset-0
col-md-3 col-md-offset-0
col-sm-12
col-xs-12
sidebar-container
">
<!-- Featured Tags -->
<section>
<!-- no hr -->
<h5><a href="/tags/">FEATURED TAGS</a></h5>
<div class="tags">
<a href="/tags/#Java" title="Java" rel="32">Java</a>
</div>
</section>
<!-- Short About -->
<section class="visible-md visible-lg">
<hr><h5><a href="/about/">ABOUT ME</a></h5>
<div class="short-about">
<img src="/img/avatar.png" />
<p>Junior SDE / Day Trader / Open Source Enthusiast / Life Long Learner</p>
<!-- SNS Link -->
<ul class="list-inline">
<li>
<a target="_blank" href="https://github.com/zihengcat">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul>
</div>
</section>
<!-- Friends Blog -->
<!--
<hr>
<h5>FRIENDS</h5>
<ul class="list-inline">
</ul>
-->
</div>
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<ul class="list-inline text-center">
<!--
<li>
<a target="_blank" href="https://github.com/zihengcat">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
-->
</ul>
<p class="copyright text-muted">
Copyright ©
ziheng's Blog
2023
<br>
Theme by Hux
<!--
<span style="display: inline-block; margin: 0 5px;">
<i class="fa fa-heart"></i>
</span>
-->
<span> | </span>
Ported by Kaijun
<span> | </span>
Modified by zihengCat
<!--
<iframe
style="margin-left: 2px; margin-bottom:-5px;"
frameborder="0" scrolling="0" width="91px" height="20px"
src="https://ghbtns.com/github-btn.html?user=kaijun&repo=hexo-theme-huxblog&type=star&count=true" >
</iframe>
-->
</br>
<span id="busuanzi_container_site_pv">
本站访问量<span id="busuanzi_value_site_pv"></span>次 |
</span>
<span id="busuanzi_container_site_uv">
本站访客数<span id="busuanzi_value_site_uv"></span>人 |
</span>
<span id="busuanzi_container_page_pv">
本文阅读量<span id="busuanzi_value_page_pv"></span>次
</span>
</p>
</div>
</div>
</div>
</footer>
<!-- BuSuanzi.js -->
<script type="text/javascript" async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<!-- Highlight.js -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script>
hljs.initHighlightingOnLoad();
</script>
<script type="text/javascript" async src="//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.3/MathJax.js?config=TeX-MML-AM_CHTML">
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$', '$'] ],
skipTags: ['code', 'script', 'noscript', 'style', 'textarea', 'pre']
}
});
</script>
<!-- jQuery -->
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Custom JavaScript -->
<script src="/js/hux-blog.js"></script>
<!-- Async Load Function -->
<script>
function async(u, c) {
var d = document, t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0];
o.src = u;
if (c) {
o.addEventListener(
'load',
function (e) {
c(null, e);
},
false
);
}
s.parentNode.insertBefore(o, s);
}
</script>
<!-- jQuery.tagCloud.js -->
<script type="text/javascript">
/*!
* jquery.tagcloud.js
* A Simple Tag Cloud Plugin for JQuery
*
* https://github.com/addywaddy/jquery.tagcloud.js
* created by Adam Groves
*/
(function($) {
/*global jQuery*/
"use strict";
var compareWeights = function(a, b)
{
return a - b;
};
// Converts HEX to an RGB array
var toRGB = function(code) {
if (code.length === 4) {
code = code.replace(/(\w)(\w)(\w)/gi, "\$1\$1\$2\$2\$3\$3");
}
var hex = /(\w{2})(\w{2})(\w{2})/.exec(code);
return [parseInt(hex[1], 16), parseInt(hex[2], 16), parseInt(hex[3], 16)];
};
// Converts an RGB array to hex
var toHex = function(ary) {
return "#" + jQuery.map(ary, function(i) {
var hex = i.toString(16);
hex = (hex.length === 1) ? "0" + hex : hex;
return hex;
}).join("");
};
var colorIncrement = function(color, range) {
return jQuery.map(toRGB(color.end), function(n, i) {
return (n - toRGB(color.start)[i])/range;
});
};
var tagColor = function(color, increment, weighting) {
var rgb = jQuery.map(toRGB(color.start), function(n, i) {
var ref = Math.round(n + (increment[i] * weighting));
if (ref > 255) {
ref = 255;
} else {
if (ref < 0) {
ref = 0;
}
}
return ref;
});
return toHex(rgb);
};
$.fn.tagcloud = function(options) {
var opts = $.extend({}, $.fn.tagcloud.defaults, options);
var tagWeights = this.map(function(){
return $(this).attr("rel");
});
tagWeights = jQuery.makeArray(tagWeights).sort(compareWeights);
var lowest = tagWeights[0];
var highest = tagWeights.pop();
var range = highest - lowest;
if(range === 0) {range = 1;}
// Sizes
var fontIncr, colorIncr;
if (opts.size) {
fontIncr = (opts.size.end - opts.size.start)/range;
}
// Colors
if (opts.color) {
colorIncr = colorIncrement (opts.color, range);
}
return this.each(function() {
var weighting = $(this).attr("rel") - lowest;
if (opts.size) {
$(this).css({"font-size": opts.size.start + (weighting * fontIncr) + opts.size.unit});
}
if (opts.color) {
// change color to background-color
$(this).css({"backgroundColor": tagColor(opts.color, colorIncr, weighting)});
}
});
};
$.fn.tagcloud.defaults = {
size: {start: 14, end: 18, unit: "pt"}
};
})(jQuery);
if($('#tag_cloud').length !== 0) {
$.fn.tagcloud.defaults = {
// size: { start: 1, end: 1, unit: 'em' },
color: { start: '#bbbbee', end: '#0085a1' },
};
$('#tag_cloud a').tagcloud();
}
</script>
<!--fastClick.js -->
<script>
async("https://cdnjs.cloudflare.com/ajax/libs/fastclick/1.0.6/fastclick.js",
function(){
var $nav = document.querySelector("nav");
if($nav) {
FastClick.attach($nav);
}
})
</script>
<!-- Side Catalog -->
</body>
</html>