This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <style type="text/css"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Circle Animation in JS</title> | |
| <style type="text/css"> | |
| .circle{ | |
| width: 20px; | |
| height: 20px; | |
| border: 1px solid #000; | |
| position: absolute; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| html { height: 100%; } | |
| body { | |
| min-height: 100%; | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| background: #EEE; | |
| } | |
| .flip-clock { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| background: #333 | |
| } | |
| .container { | |
| margin: 40px auto; | |
| max-width: 600px; | |
| } | |
| p { | |
| color: #fff; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .box{ | |
| height: 100px; | |
| width: 100px; | |
| background: lightslategrey; | |
| margin: 20px auto; | |
| display: block; | |
| animation: circle 5s forwards; | |
| } | |
| @keyframes circle{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"/> | |
| <title>javascript</title> | |
| <link rel="stylesheet" type="text/css" href="dev.css"> | |
| </head> | |
| <body> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"/> | |
| <title>javascript</title> | |
| <link rel="stylesheet" type="text/css" href="dev.css"> | |
| </head> | |
| <body> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include"binarysearchtree.h" | |
| //#include"quetype.h" | |
| #include <iostream> | |
| using namespace std; | |
| template <class ItemType> | |
| TreeType<ItemType>::TreeType() | |
| { | |
| root=NULL; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include"sortedtype.h" | |
| #include"sortedtype.cpp" | |
| using namespace std; | |
| int main() | |
| { | |
| SortedType<int> a; | |
| //int x; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| int main() | |
| { | |
| int d; | |
| cin>>d; | |
| if(d=1) | |
| { |