-
Notifications
You must be signed in to change notification settings - Fork 0
/
learn3x3.html
1052 lines (1048 loc) · 66.3 KB
/
learn3x3.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
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" ></script>
<script src="https://kit.fontawesome.com/d392aae976.js" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/animations.css">
<link rel="icon" href="uploads/images/fav.png" type="image/x-icon">
<title>The Cubology</title>
</head>
<body onload="loadinganim(); level_checker(); achievement_main();achievement_checker();">
<!-- Loading Animation -->
<div class="row-loading col-12 center center-text" id="loader">
<div class="rubiks-loader">
<div class="cube">
<!-- base position -->
<div class="face front piece justanotherrow-top column-left yellow"></div>
<div class="face front piece justanotherrow-top column-centre green"></div>
<div class="face front piece justanotherrow-top column-right white"></div>
<div class="face front piece justanotherrow-centre column-left blue"></div>
<div class="face front piece justanotherrow-centre column-centre green"></div>
<div class="face front piece justanotherrow-centre column-right blue"></div>
<div class="face front piece justanotherrow-bottom column-left green"></div>
<div class="face front piece justanotherrow-bottom column-centre yellow"></div>
<div class="face front piece justanotherrow-bottom column-right red"></div>
<!-- first step: E', equator inverted -->
<div class="face down piece justanotherrow-top column-centre green"></div>
<div class="face down piece justanotherrow-centre column-centre red"></div>
<div class="face down piece justanotherrow-bottom column-centre white"></div>
<!-- second step: M, middle -->
<div class="face right piece justanotherrow-centre column-left yellow"></div>
<div class="face right piece justanotherrow-centre column-centre green"></div>
<div class="face right piece justanotherrow-centre column-right blue"></div>
<!-- third step: L, left -->
<div class="face up piece justanotherrow-top column-left yellow"></div>
<div class="face up piece justanotherrow-centre column-left blue"></div>
<div class="face up piece justanotherrow-bottom column-left green"></div>
<!-- fourth step: D, down -->
<div class="face left piece justanotherrow-bottom column-left green"></div>
<div class="face left piece justanotherrow-bottom column-centre yellow"></div>
<div class="face left piece justanotherrow-bottom column-right red"></div>
</div>
</div>
<div class="know col-3">
<h1 class="heading inconsolata">DID YOU KNOW</h1>
<p class="bodying inconsolata"></p>
</div>
</div>
<!-- BODY OF THE HOME PAGE AND OTHER PAGES AS WELL -->
<div id="body" style="display: none;">
<nav class="navbar navbar-expand-lg navbar-light bg-light dropdown-menu-right" style="float:right;" id="navbar" animation="popdown-navbar 1s forwards">
<a class="navbar-brand" href="index"><img src="uploads/images/logo.png" class="logo" width="250em" alt="Logo"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="features">Features</a> <!-- Cube Features -->
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Learn The 3x3</a> <!-- Move Notation | Beginner | Advanced -->
</li>
<li class="nav-item">
<div class="dropdown">
<button class="nav-link" type="button" data-toggle="dropdown" aria-expanded="false">
More Puzzles
</button>
<div class="dropdown-menu" id="more-drop">
<a class="dropdown-item" href="https://jperm.net/2x2" target="_blank">Learn The 2x2</a>
<a class="dropdown-item" href="https://jperm.net/4x4" target="_blank">Learn The 4x4</a>
</div>
</div>
</li>
<!-- <li class="nav-item">
<a class="nav-link" href="solve">Solve My Cube</a>
</li> -->
<li class="nav-item">
<div class="dropdown">
<button class="nav-link" type="button" data-toggle="dropdown" aria-expanded="false">
Store
</button>
<div class="dropdown-menu">
<a class="dropdown-item" href="https://www.cubelelo.com/" target="_blank">Cubelelo</a>
<a class="dropdown-item" href="https://www.gancube.com/" target="_blank">GanCube</a>
<a class="dropdown-item" href="https://www.thecubicle.com/" target="_blank">The Cubicle</a>
<a class="dropdown-item" href="https://ruwix.com/shop/" target="_blank">Ruwix</a>
<a class="dropdown-item" href="https://speedcubeshop.com/" target="_blank">Speed Cube Shop</a>
</div>
</div>
</li>
<li class="nav-item">
<div class="dropdown" toggleClass>
<button class="nav-link" type="button" data-toggle="dropdown" aria-expanded="false">
Other
</button>
<div class="dropdown-menu" id="other-drop">
<a class="dropdown-item" href="other#tos">Terms of Service</a>
<a class="dropdown-item" href="other#privacy">Privacy Policy</a>
</div>
</div>
</li>
<li class="nav-item" id="nav-link-download" style="display: none">
<a class="nav-link" href="download">Download</a>
</li>
</ul>
</div>
<button class="downloadcolor center-text" id="download" onclick="window.location='download'"><span class="roboto bold">DOWNLOAD</span></button>
</nav>
<div class="cube-holder">
<div class="cube-simulator-title">
<h1 class="exo2 fw-600 op-0" animation="popdown 1s forwards">The Cube Simulator</h1> <!-- Add Credits for Real Owner -->
</div>
<div>
<div class="cube-level-ribbons op-0" animation="fadein 0.5s 1s forwards">
<div class="ribbon active op-0" style="margin-left: 10%;" onclick="level_identifier(this)" level="0" animation="scalein 1s 1.25s forwards"><span class="exo2">Practice</span></div>
<div class="ribbon op-0" style="margin-left: 10%;" onclick="level_identifier(this)" level="1" animation="scalein 1s 1.5s forwards"><span class="exo2">Level 1</span></div>
<div class="ribbon op-0" style="margin-left: 10%;" onclick="level_identifier(this)" level="2" animation="scalein 1s 1.75s forwards"><span class="exo2">Level 2</span></div>
<div class="ribbon op-0" style="margin-left: 10%;" onclick="level_identifier(this)" level="3" animation="scalein 1s 2s forwards"><span class="exo2">Level 3</span></div>
</div>
<div class="cube-simulator op-0" animation="popright 0.5s 1s forwards" animate-responsive="popright > 1100-popup">
<div>
<canvas data-engine="three.js r140" style="display: block; touch-action: none;"></canvas>
</div>
<div class="cube-notation-holder">
<div class="cube-notation-row">
<div class="circlebtns"></div>
<div class="circlebtns"></div>
<div class="circlebtns"></div>
<div class="circlebtns"></div>
<div class="circlebtns"></div>
</div>
<div class="cube-notation-row">
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2s forwards" animate-responsive="2 > 1100-0">U</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2.1s forwards" animate-responsive="2 > 1100-0">D</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2.2s forwards" animate-responsive="2 > 1100-0">R</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2.3s forwards" animate-responsive="2 > 1100-0">L</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2.4s forwards" animate-responsive="2 > 1100-0">F</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2.5s forwards" animate-responsive="2 > 1100-0">B</button>
</div>
<div class="cube-notation-row">
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2.6s forwards" animate-responsive="2 > 1100-0">U'</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2.7s forwards" animate-responsive="2 > 1100-0">D'</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2.8s forwards" animate-responsive="2 > 1100-0">R'</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 2.9s forwards" animate-responsive="2 > 1100-0">L'</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 3s forwards" animate-responsive="3 > 1100-1">F'</button>
<button class="roboto cube-notation op-0" animation="distorted-pop 1s 3.1s forwards" animate-responsive="3 > 1100-1">B'</button>
</div>
<p class="roboto op-0" style="width: 100%; text-align: center; padding-top: 2px; font-size: 14px;" animation="fadein 1s 4.1s forwards" animate-responsive="4 > 1100-2">Drag the cube to move</p>
</div>
</div>
</div>
</div>
<div class="cube-content">
<h2 class="inconsolata bold cube-title" animation typing-effect="true" typing-text="An Intuitive Approach:" typing-responsive="770"><span class="cursor"></span></h2>
<div class="know-more" animation="scaleout 1s forwards">
<label class="bold" id="cube-notations">
<input type="checkbox" />
Cube Notations<span class="triangle_down op-0" animation="distorted-pop 0.5s 1s forwards"></span></label>
<div class="additional-info">
<h2>Face Turns</h2>
<h4>The basic moves are <b>U</b>p, <b>D</b>own, <b>R</b>ight, <b>L</b>eft, <b>F</b>ront, and <b>B</b>ack.</h4>
<h4>Each move indicated to turn that side clockwise, as if you were facing that side.</h4>
<div class="move-image-holder">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/U.png" alt="move" />
<div class="cube-text bold">U</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/D.png" alt="move" />
<div class="cube-text bold">D</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/R.png" alt="move" />
<div class="cube-text bold">R</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/L.png" alt="move" />
<div class="cube-text bold">L</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/F.png" alt="move" />
<div class="cube-text bold">F</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/B.png" alt="move" />
<div class="cube-text bold">B</div>
</div>
</div>
<h4>An apostrophe (pronounceded as <i>prime</i>) indicates to turn that side in the opposite direction (anti-clockwise).</h4>
<div class="move-image-holder">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/U'.png" alt="move" />
<div class="cube-text bold">U'</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/D'.png" alt="move" />
<div class="cube-text bold">D'</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/R'.png" alt="move" />
<div class="cube-text bold">R'</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/L'.png" alt="move" />
<div class="cube-text bold">L'</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/F'.png" alt="move" />
<div class="cube-text bold">F'</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/B'.png" alt="move" />
<div class="cube-text bold">B'</div>
</div>
</div>
<h4>The number 2 indicates to turn that side twice.</h4>
<div class="move-image-holder">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/U2.png" alt="move" />
<div class="cube-text bold">U2</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/D2.png" alt="move" />
<div class="cube-text bold">D2</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/R2.png" alt="move" />
<div class="cube-text bold">R2</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/L2.png" alt="move" />
<div class="cube-text bold">L2</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/F2.png" alt="move" />
<div class="cube-text bold">F2</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/B2.png" alt="move" />
<div class="cube-text bold">B2</div>
</div>
</div>
<h6 class="info-note"><b>Note:</b> Double moves such as U2 can be done in any direction (clockwise or anti-clockwise). The direction is specified with an apostrophe such as U2 or U2' (to show fingertricks), but it's not prevalent. </h6>
<h2>Wide Moves</h2>
<h4>Wide moves turn 2 layers at once. They are written in 2 ways:</h4>
<ul style="text-align: left !important; display: inline-block;">
<li><h5>Lower case: <b>u, d, r, l, f, b</b></h5></li>
<li><h5>Ending in w: <b>Uw, Dw, Rw, Lw, Fw, Bw</b></h5></li>
</ul>
<div class="move-image-holder">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/Uw.png" alt="move" />
<div class="cube-text bold">Uw / u</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/Dw.png" alt="move" />
<div class="cube-text bold">Dw / d</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/Rw.png" alt="move" />
<div class="cube-text bold">Rw / r</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/Lw.png" alt="move" />
<div class="cube-text bold">Lw / l</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/Fw.png" alt="move" />
<div class="cube-text bold">Fw / f</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/Bw.png" alt="move" />
<div class="cube-text bold">Bw / b</div>
</div>
</div>
<h4>There is also Uw' and Uw2, etc.</h4>
<h2> Slice Moves</h2>
<h4>Slice moves only turn the middle layer. They are written as <b>M</b>, <b>E</b>, and <b>S</b>.</h4>
<h4><b>M</b> follows the <b>L</b> direction, <b>E</b> follows the <b>D</b> direction, <b>S</b> follows the <b>F</b> direction.</h4>
<div class="move-image-holder">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/M.png" alt="move" />
<div class="cube-text bold">M</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/E.png" alt="move" />
<div class="cube-text bold">E</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/S.png" alt="move" />
<div class="cube-text bold">S</div>
</div>
</div>
<h4>There is also M' and M2, etc.</h4>
<h6 class="info-note"><b>Memory Trick:</b> M follows the same direction as L because M is closer to L than R in the alphabet. The same idea applies for E (follows D instead of U) and S (follows F instead of B).</h6>
<h2>Cube Rotations</h2>
<h4>Cube rotations rotate the cube. They are written as <b>x</b>, <b>y</b>, <b>z</b>.</h4>
<h4><b>x</b> follows the <b>R</b> direction, <b>y</b> follows the <b>U</b> direction, <b>z</b> follows the <b>F</b> direction.</h4>
<div class="move-image-holder">
<div class="move-image" id="no-rotation">
<img class="cube-img" src="uploads/images/cube-notations/no-rotation.png" alt="move" />
<div class="cube-text bold">No Rotation</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/x.png" alt="move" />
<div class="cube-text bold">x</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/y.png" alt="move" />
<div class="cube-text bold">y</div>
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-notations/z.png" alt="move" />
<div class="cube-text bold">z</div>
</div>
</div>
<h4>There is also x' and x2, etc.</h4>
<h6 class="info-note"><b>Note:</b> The default position of the cube is <b>White (Top)</b>, <b>Green (Front)</b>, <b>Red (Right)</b>.</h6>
<h6 class="info-note"><b>Memory Trick:</b> x follows the same direction as R because x is closer to R than L in the alphabet. The same idea applies for y (follows U instead of D) and z (follows F instead of B).</h6>
<h2><a class="basic-link" href="uploads/images/cube-notations/cheat-sheet.png" target="_blank" download rel="nofollow">Download the Basic Cheat Sheet</a></h2>
<h6 class="info-note" style="text-align: right"><a href="https://jperm.net/3x3/moves" target="_blank">Credits</a></h6>
</div>
</div>
<div class="know-more" animation="scaleout 1s forwards">
<label class="bold" id="beginner-method">
<input type="checkbox" />
The Beginner's Method<span class="triangle_down op-0" animation="distorted-pop 0.5s 1s forwards"></span></label>
<div class="additional-info">
<div id="white-cross">
<h2>Step 1. White Cross</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-1.png" alt="white-cross" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-2.png" alt="white-cross" />
</div>
</div>
<h4>Keep the white center piece on top, and find an edge in the bottom layer that has white.</h4>
<h6 class="info-note"><b>Note:</b> A center piece has only 1 color and an edge piece has only 2 colors.</h6>
<h4>Look at the edge piece's other color (not white), and turn the bottom layer so that the edge is under the center of the respective color.</h4>
<h4>Rotate that face to bring the edge on the white center piece/layer.</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/white-cross-solve-1-1.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/white-cross-solve-1-2.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-1-3.png" alt="example" />
</div>
</div>
<h4>Another example:</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/white-cross-solve-2-1.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/white-cross-solve-2-2.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-2-3.png" alt="example" />
</div>
</div>
<h4>Anytime an edge piece is flipped/inverted (an example above), fix it by doing the following moves:</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-3-1.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-3-2.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-3-3.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-3-4.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-3-5.png" alt="example" />
</div>
</div>
<h4>Anytime you find a white edge piece that is not in the bottom layer, you can move it in the bottom layer by doing the following:</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-4-1.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-4-2.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-4-3.png" alt="example" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-solve-4-4.png" alt="example" />
</div>
</div>
<h4>Then simply solve it like you would do for any white edge piece in the bottom layer.</h4>
<h4>Solve all the 4 white edge pieces to make the white cross. Make sure to look at both colors on each piece to not mess up with inserting the edge inverted.</h4>
</div>
<h2>Step 2. First Layer</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/first-layer-1.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/first-layer-2.png" alt="first-layer" />
</div>
</div>
<h4>Hold the white cross at the bottom (yellow on top).</h4>
<h4>Before solving anything, do this <span class="basic-link" onclick="clickanimation('4-move')">4-move sequence</span> repeatedly until you've memorized it. It will help you later on!</h4>
<div id="4-move">
<div id="4-move-right">
<h4><u>Right handed 4-moves:</u></h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-1-1.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-1-2.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-1-3.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-1-4.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-1-5.png" alt="first-layer" />
</div>
</div>
</div>
<div id="4-move-left">
<h4><u>Left handed 4-moves:</u></h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-2-1.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-2-2.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-2-3.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-2-4.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-2-5.png" alt="first-layer" />
</div>
</div>
</div>
</div>
<h4>Now, we'll use the <span class="basic-link" onclick="clickanimation('4-move')">4-moves</span> to solve the first layer.</h4>
<h4>With the cross at bottom, find a corner piece in the top layer (yellow layer) that has white. Turn the top layer so the surrounding centers match the colors on the corner.</h4>
<h6 class="info-note"><b>Note:</b> A corner has three colors.</h6>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-3-1.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-3-2.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-3-3.png" alt="first-layer" />
</div>
</div>
<h4>Hold the cube so the corner piece is on the front/right, and repeat the <span class="basic-link" onclick="clickanimation('4-move')">4-moves</span> until the corner is solved.</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-4-1.png" alt="first-layer" />
</div>
<div class="move-image small">
<h6 class="info-note">Right<br><span class="basic-link" onclick="clickanimation('4-move-right')">4-moves</span></h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-4-2.png" alt="first-layer" />
</div>
<div class="move-image small">
<h6 class="info-note">Right<br><span class="basic-link" onclick="clickanimation('4-move-right')">4-moves</span></h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-4-3.png" alt="first-layer" />
</div>
<div class="move-image small">
<h6 class="info-note">Right<br><span class="basic-link" onclick="clickanimation('4-move-right')">4-moves</span></h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/first-layer-solve-4-4.png" alt="first-layer" />
</div>
</div>
<h4>You can also use the <span class="basic-link" onclick="clickanimation('4-move-left')">left 4-moves</span> if you hold the piece on the front/left to start.</h4>
<h4>Repeat until all of the first layer corners are solved. If find a white corner incorrectly stuck in the bottom layer, you can bring it into the top layer by holding it on the front/right and doing the <span class="basic-link" onclick="clickanimation('4-move-right')">right 4-moves</span> or by holding it on the front/left and doing the <span class="basic-link" onclick="clickanimation('4-move-left')">left 4-moves</span>.</h4>
<h2>Step 3. Second Layer</h2>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/second-layer-1.png" alt="second-layer" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/second-layer-2.png" alt="second-layer" />
</div>
</div>
<h4>Find an edge piece on the top layer (yellow center on top) that doesn't have yellow as either of its pieces.</h4>
<h4>Keep turning the top layer until the edge pieces matches a center.</h4>
<h4>Face the matched piece and check if the top color matches the right or left center.</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-1-1.png" alt="second-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-1-2.png" alt="second-layer">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-1-3.png" alt="second-layer" />
</div>
</div>
<h4>If it matches the <u>right</u> side, do the following moves:</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-2-1.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-2-2.png" alt="first-layer" />
</div>
<div class="move-image small">
<h6 class="info-note">Right<br><span class="basic-link" onclick="clickanimation('4-move-right')">4-moves</span></h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-2-3.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-2-4.png" alt="first-layer" />
</div>
<div class="move-image small">
<h6 class="info-note">Left<br><span class="basic-link" onclick="clickanimation('4-move-left')">4-moves</span></h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-2-5.png" alt="first-layer" />
</div>
</div>
<h4>How to memorize this algorithm:</h4>
<ul style="text-align: left !important; display: inline-block;">
<li><h5>Turn the top with your <u>right</u> hand</h5></li>
<li><h5>Do the <span class="basic-link" onclick="clickanimation('4-move-right')">right 4-moves</span></h5></li>
<li><h5>Rotate the cube to face the <u>right</u> side</h5></li>
<li><h5>Do the <span class="basic-link" onclick="clickanimation('4-move-left')">left 4-moves</span></h5></li>
</ul>
<h4>If it matches the <u>left</u> side, do the following moves:</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-3-1.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-3-2.png" alt="first-layer" />
</div>
<div class="move-image small">
<h6 class="info-note">Left<br><span class="basic-link" onclick="clickanimation('4-move-right')">4-moves</span></h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-3-3.png" alt="first-layer" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-3-4.png" alt="first-layer" />
</div>
<div class="move-image small">
<h6 class="info-note">Right<br><span class="basic-link" onclick="clickanimation('4-move-left')">4-moves</span></h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/second-layer-solve-3-5.png" alt="first-layer" />
</div>
</div>
<h4>How to memorize this algorithm:</h4>
<ul style="text-align: left !important; display: inline-block;">
<li><h5>Turn the top with your <u>left</u> hand</h5></li>
<li><h5>Do the <span class="basic-link" onclick="clickanimation('4-move-left')">left 4-moves</span></h5></li>
<li><h5>Rotate the cube to face the <u>left</u> side</h5></li>
<li><h5>Do the <span class="basic-link" onclick="clickanimation('4-move-right')">right 4-moves</span></h5></li>
</ul>
<h4>Repeat the steps until all the 2nd layer edges are solved.</h4>
<h4>If an edge you are looking for is stuck somewhere in the 2nd layer, move any edge into its spot using one of the 2 algorithms above. This will cause the edge to come out into the top layer.</h4>
<div id="yellow-cross">
<h2>Step 4. Yellow Cross</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-1.png" alt="yellow-cross" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-2.png" alt="yellow-cross" />
</div>
</div>
<h4>Hold the cube to match one of the following (ignore the corner pieces):</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-1-1.png" alt="yellow-cross" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-1-2.png" alt="yellow-cross" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-1-3.png" alt="yellow-cross" />
</div>
</div>
<h4>Then do the following moves:</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-2-1.png" alt="yellow-cross" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-2-2.png" alt="yellow-cross" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-2-3.png" alt="yellow-cross" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-2-4.png" alt="yellow-cross" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-2-5.png" alt="yellow-cross" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-2-6.png" alt="yellow-cross" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/yellow-cross-solve-2-7.png" alt="yellow-cross" />
</div>
</div>
<h4>How to memorize this algorithm:</h4>
<ul style="text-align: left !important; display: inline-block;">
<li><h5>Turn the front clockwise</h5></li>
<li><h5>Do the <span class="basic-link" onclick="clickanimation('4-move')">4-move sequence</span></h5></li>
<li><h5>Rotate the cube to face the <u>right</u> side</h5></li>
<li><h5>Turn the front anti-clockwise</h5></li>
</ul>
<h4>If the cross is not solved yet, hold the cube to match the new case and repeat.</h4>
<h6 class="info-note"><b>Note:</b> Focus on the colors on edge pieces, and not corner pieces. If you have 1 or 3 edge pieces facing up, your cube is unsolvable, and needs to be taken apart and reassembled.</h6>
</div>
<h2>Step 5. Match Cross Colors</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-1.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-2.png" alt="match-cross-colors">
</div>
</div>
<h4>Turn the top face until 2 cross pieces match the side color (if all 4 match, you have finished this step!</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-1-1.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-1-2.png" alt="match-cross-colors">
</div>
</div>
<h4>Hold the 2 matching edges at the back/right. If they are across from each other, hold them in any way.</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-2-1.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-2-2.png" alt="match-cross-colors">
</div>
</div>
<h4>Then do the following moves:</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-3-1.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-3-2.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-3-3.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-3-4.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-3-5.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-3-6.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-3-7.png" alt="match-cross-colors">
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-cross-colors-solve-3-8.png" alt="match-cross-colors">
</div>
</div>
<h4>How to memorize this algorithm:</h4>
<ul style="text-align: left !important; display: inline-block;">
<li><h5>The first 3 moves of the <span class="basic-link" onclick="clickanimation('4-move')">4-move sequence</span></h5></li>
<li><h5>Look at the pair of pieces from the bottom.</h5></li>
<li><h5>Watch how they move away, and then back into the bottom.</h5></li>
</ul>
<h4>Turn the top to match all 4 colors. If you can only match 2 colors, then repeat this step.</h4>
<h2>Step 6. Match Corners</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-1.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-2.png" alt="match-corners" />
</div>
</div>
<h4>A corner is in the correct position if all 3 colors on the piece match the surrounding colors.</h4>
<h4>Examples of corner pieces in the correct position:</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-1-1.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-1-2.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-1-3.png" alt="match-corners" />
</div>
</div>
<h4>If 1 corner is correct, hold it in the front/right (if 0 are correct, hold any corner in the front/right).</h4>
<h4>Then do the following moves:</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-2-1.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-2-2.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-2-3.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-2-4.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-2-5.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-2-6.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-2-7.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-2-8.png" alt="match-corners" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/match-corners-solve-2-9.png" alt="match-corners" />
</div>
</div>
<h4>How to memorize this algorithm:</h4>
<ul style="text-align: left !important; display: inline-block;">
<li><h5>Turn the top with your right hand, then turn the right side up</h5></li>
<li><h5>Turn the top with your left hand, then turn the left side up</h5></li>
<li><h5>Repeat, but go down instead of up</h5></li>
</ul>
<h4>Check if all 4 corners are in the correct position. If not, hold a correct corner on the front/right and repeat.</h4>
<h6 class="info-note"><b>Note:</b>If you have only 2 corners in the correct position, your cube is unsolvable, and needs to be taken apart and reassembled.</h6>
<h2>Step 7. Solve The Cube!</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/solve-the-cube-1.png" alt="solve-the-cube" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/solve-the-cube-2.png" alt="solve-the-cube" />
</div>
</div>
<h4>It is very easy to make a mistake during this step, so I recommend reading the whole thing, including the <span class="basic-link" onclick="clickanimation('#common-mistakes')">common mistakes</span>, before attempting it.</h4>
<h4>Turn the cube over so that the unsolved corners are all in the bottom layer.</h4>
<h4>You may have 2, 3, or 4 unsolved corner pieces.</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/solve-the-cube-solve-1-1.png" alt="solve-the-cube" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/solve-the-cube-solve-1-2.png" alt="solve-the-cube" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/solve-the-cube-solve-1-3.png" alt="solve-the-cube" />
</div>
</div>
<h4>Repeatedly do the <span class="basic-link" onclick="clickanimation('4-move')">4-move sequence</span> until the front/right corner is solved (has yellow on the bottom).</h4>
<h4>Then turn the bottom layer (not the whole cube) to bring an unsolved corner to the front/right. Repeat until the whole cube is solved.</h4>
<div class="move-image-holder center-img">
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/solve-the-cube-solve-2-1.png" alt="solve-the-cube" />
</div>
<div class="move-image small">
<h6 class="info-note">Repeat <span class="basic-link" onclick="clickanimation('4-move')">4-moves</span></h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/solve-the-cube-solve-2-2.png" alt="solve-the-cube" />
</div>
<div class="move-image small">
<h6 class="info-note">Turn the bottom</h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/solve-the-cube-solve-2-3.png" alt="solve-the-cube" />
</div>
<div class="move-image small">
<h6 class="info-note">Repeat <span class="basic-link" onclick="clickanimation('4-move')">4-moves</span></h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/solve-the-cube-solve-2-4.png" alt="solve-the-cube" />
</div>
<div class="move-image small">
<h6 class="info-note">Turn the bottom</h6>
<img class="cube-arrow small" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/solve-the-cube-solve-2-5.png" alt="solve-the-cube" />
</div>
</div>
<div id="common-mistakes">
<h4>Common mistakes:</h4>
<ul style="text-align: left !important; display: inline-block;">
<li><h5>Turning the whole cube to get the next corner to the bottom/right.<br>Make sure you turn only the bottom layer.</h5></li>
<li><h5>Not finishing the 4-moves because the corner is solved after 3 moves.<br>Make sure you always finish the 4-moves.</h5></li>
</ul>
</div>
<h6 class="info-note"><b>Note:</b> If you only have 1 corner unsolved while the rest of the cube is solved, or if you followed step 7 correctly but it does not work, then your cube is unsolvable, and needs to be taken apart and reassembled.</h6>
<h6 class="info-note" style="text-align: right"><a href="https://jperm.net/3x3" target="_blank">Credits</a></h6>
</div>
</div>
<div class="know-more" animation="scaleout 1s forwards">
<label class="bold">
<input type="checkbox" />
The CFOP Method<span class="triangle_down op-0" animation="distorted-pop 0.5s 1s forwards"></span></label>
<div class="additional-info">
<h4 style="border-top: 1px solid var(--darkblue);"><b>Cross, First 2 Layers (F2L), Orientation, Permutation (CFOP)</b> is the most popular method amongst speedcubers. A method used by most of the <a class="basic-link" href="https://www.worldcubeassociation.org/results/records?event_id=333&show=history" target="_blank">3x3 world record holders</a>. This method is also known as the <b>Fridrich's Method</b>.</h4>
<h6 class="info-note"><b>Note:</b> It is recommended to go through the <span class="basic-link" onclick=" $('#cube-notations').trigger('click');clickanimation('cube-notations');">cube notations</span> and the <span class="basic-link" onclick=" $('#beginner-method').trigger('click');clickanimation('beginner-method');">beginner's method</span> before trying <b>CFOP</b>.</h6>
<h2>Step 1. Cross</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-1.png" alt="white-cross" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/white-cross-2.png" alt="white-cross" />
</div>
</div>
<h4>You should already be familiar with the cross in the <span class="basic-link" onclick=" $('#beginner-method').trigger('click');clickanimation('white-cross');">beginner's method</span>.</h4>
<h4>With the right practice, the cross can be done within 8 moves or to be precise, within 5 seconds.</h4>
<h2>Step 2. F2L</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/f2l-1.png" alt="f2l" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/f2l-2.png" alt="f2l" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img img-inverted" src="uploads/images/cube-solve/3x3/f2l-3.png" alt="f2l" />
</div>
</div>
<h4>Instead of solving layer by layer, with F2L you can solve 2 layers at the same time. The name goes by <b>First 2 Layers</b>. Though, the concepts are harder than the beginner's method, with some practice F2L is <i>much faster</i> than the beginner's method.</h4>
<h4>F2L can help you save 20 moves per solve. You should definitely give it a try!</h4>
<h2>Step 3. OLL</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/oll-1.png" alt="oll" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/oll-2.png" alt="oll" />
</div>
</div>
<h4><b>Orientation of the Last Layer (OLL)</b> solves the whole yellow by applying one of 52 algorithms. Don't worry, beginner OLL requires only 10 algorithms.</h4>
<h4>Beginner OLL (2-Look OLL) has 2 steps:</h4>
<ul style="text-align: left !important; display: inline-block;">
<li><h5>Orient the edges (3 algorithms)</h5></li>
<li><h5>Orient the corners (7 algorithms)</h5></li>
</ul>
<h4>Some of these algorithms have been taught in the <span class="basic-link" onclick=" $('#beginner-method').trigger('click');clickanimation('yellow-cross');">beginner's method</span>. Other algorithms can be memorized by patterns — a common technique for memorizing algorithms.</h4>
<h2>Step 4. PLL</h2>
<div class="move-image-holder no-border center-img">
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/pll-1.png" alt="pll" />
</div>
<div class="move-image">
<img class="cube-arrow" src="uploads/images/arrow.png" alt="arrow" />
</div>
<div class="move-image">
<img class="cube-img" src="uploads/images/cube-solve/3x3/pll-2.png" alt="pll" />
</div>
</div>
<h4><b>Permutation of the Last Layer (OLL)</b> solves the cube and has 16 total algorithms. Don't worry, beginner PLL requires only 6 algorithms.</h4>
<h4>Beginner PLL (2-Look PLL) has 2 steps:</h4>
<ul style="text-align: left !important; display: inline-block;">
<li><h5>Solve the corners (2 algorithms)</h5></li>
<li><h5>Solve the edges (4 algorithms)</h5></li>
</ul>
<h4>The algorithms are quite easy to understand and can be memorized visually with some practice.</h4>
<h6 class="info-note" style="text-align: right"><a href="https://jperm.net/3x3/cfop" target="_blank">Credits</a></h6>
<h2 style="border: none;">Happy Cubing!</h2>
</div>
</div>
<h2 class="inconsolata bold" animation="fliptext 1.5s forwards">Most used 3x3 Algorithms (from <span class="basic-link" onclick="window.open('https://cubeskills.com/categories/3x3-algs')">CubeSkills</span>):</h2>
<div class="algorithms">
<div class="op-0" onclick="window.open('uploads/pdfs/pll-algorithms.pdf')" animation="scalein 1s forwards">
<div>
<span class="label label-intermediate">Intermediate</span>
<img src="uploads/images/cube-solve/3x3/pll-alg.png" class="alg-img" alt="pll">
</div>
<h4 class="alg-title">PLL Algorithms</h4>
</div>
<div class="op-0" onclick="window.open('uploads/pdfs/oll-algorithms.pdf')" animation="scalein 1s forwards">
<div>
<span class="label label-intermediate">Intermediate</span>
<img src="uploads/images/cube-solve/3x3/oll-alg.png" class="alg-img" alt="oll">
</div>
<h4 class="alg-title">OLL Algorithms</h4>
</div>
<div class="op-0" onclick="window.open('uploads/pdfs/wv-algorithms.pdf')" animation="scalein 1s forwards">
<div>
<span class="label label-advanced">Advanced</span>
<img src="uploads/images/cube-solve/3x3/wv-alg.png" class="alg-img" alt="wv">
</div>
<h4 class="alg-title">WV Algorithms</h4>
</div>
<div class="op-0" onclick="window.open('uploads/pdfs/coll-algorithms.pdf')" animation="scalein 1s forwards">
<div>
<span class="label label-advanced">Advanced</span>
<img src="uploads/images/cube-solve/3x3/coll-alg.png" class="alg-img" alt="coll">
</div>
<h4 class="alg-title">COLL Algorithms</h4>
</div>
<div class="op-0" onclick="window.open('uploads/pdfs/ble-algorithms.pdf')" animation="scalein 1s forwards">
<div>
<span class="label label-advanced">Advanced</span>
<img src="uploads/images/cube-solve/3x3/ble-alg.png" class="alg-img" alt="ble">
</div>
<h4 class="alg-title">BLE Algorithms</h4>
</div>
<div class="op-0" onclick="window.open('uploads/pdfs/easy-vls-algorithms.pdf')" animation="scalein 1s forwards">
<div>
<span class="label label-advanced">Advanced</span>
<img src="uploads/images/cube-solve/3x3/easy-vls-alg.png" class="alg-img" alt="easy-cls">
</div>
<h4 class="alg-title">Easy VLS Algorithms</h4>