├── .vs ├── ProjectSettings.json ├── slnx.sqlite └── streamIt │ └── config │ └── applicationhost.config ├── .vscode └── settings.json ├── README.md ├── about.html ├── contact.html ├── css └── style.css ├── img ├── about │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── 4.jpg ├── header-bg.jpg ├── landingPage.png ├── latestMovies.png ├── logos │ ├── creative-market.jpg │ ├── designmodo.jpg │ ├── envato.jpg │ └── themeforest.jpg ├── map-image.png ├── no-poster.gif ├── portfolio │ ├── 01-full.jpg │ ├── 01-thumbnail.jpg │ ├── 02-full.jpg │ ├── 02-thumbnail.jpg │ ├── 03-full.jpg │ ├── 03-thumbnail.jpg │ ├── 04-full.jpg │ ├── 04-thumbnail.jpg │ ├── 05-full.jpg │ ├── 05-thumbnail.jpg │ ├── 06-full.jpg │ └── 06-thumbnail.jpg ├── searchMovie.png └── team │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ └── myImage.jpg ├── index.html ├── index.php ├── js ├── indexMovies.js ├── movie.js ├── searchMovie.js ├── searchTv.js └── tv.js ├── movies.html ├── nonsencefolder ├── nonsencefile └── searchMoviebck.js ├── singleMovie.html ├── singleTv.html ├── tv.html └── wp-content └── themes └── Dooplay └── inc └── parts └── single └── player_videospider.php /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vs/streamIt/config/applicationhost.config: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 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 | 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 | 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 | 1001 | 1002 | 1003 | 1004 | 1005 | 1006 | 1007 | 1008 | 1009 | 1010 | 1011 | 1012 | 1013 | 1014 | 1015 | 1016 | 1017 | 1018 | 1019 | 1020 | 1021 | 1022 | 1023 | 1024 | 1025 | 1026 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | StreamIt 3 |
4 |

5 | 6 |

7 | StreamIt is a modern web application that allows you to search, view and stream movies and television shows found on the internet. 8 |

9 |
10 | 11 |

12 | Home Page 13 |

14 | 15 | ![Landing Page](img/landingPage.png) 16 |
17 | 18 |

19 | Latest Movies 20 |

21 | 22 | ![Latest Movie which are not so latest](img/latestMovies.png) 23 |
24 | 25 |

26 | Result of Movie Search 27 |

28 | 29 | ![Search Result](img/searchMovie.png) 30 |
31 | 32 | #### Bugs 33 | A list of reported bugs can be found [here](https://github.com/hrishi7/streamIt/issues). If your bug has yet to be reported, feel free to open a [new issue here](https://github.com/hrishi7/streamIt/issues/new). 34 | 35 | -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | StreamIt 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 62 | 63 | 64 |
65 |
66 |
67 | 68 |
69 |
70 |
71 | 72 | 73 | 74 | 75 | 76 |
77 |
78 |
79 |
80 |

Available For Jobs

81 |

I am

82 |

From Kolkata, West Bengal, India. Currenly persuring B.tech in CSE in MAKAUT. I want to make a career in Web Developement with JS, CSS, HTML and Other Famous Frameworks.I am Very Serious And Dedicated about my work no matter whatever it is.

83 |
84 |
85 |
86 |
87 |
88 | my-image
89 |

Web Developer

90 |

Hrishikesh baidya

91 | E-mail:
hrishikeshbaidya7@gmail.com
92 | Contact No:
+91 8442979928
93 | 94 |
95 |
96 |
97 | 98 |
99 |
100 | 101 | 102 | 103 | 104 | 105 |
106 |
107 |
108 |
109 | Copyright © StreamIt Developed By Hrishikesh Baidya in 2018 110 |
111 |
112 | 129 |
130 |
131 |
132 |
133 | 134 | 135 | 136 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | StreamIt 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 62 | 63 | 71 | 72 | 73 |
74 |
75 |
76 |
77 |

Contact Us

78 |

Tell Us What you feel Don't Take Any Stress!!

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 | Copyright © StreamIt Developed By Hrishikesh Baidya in 2018 125 |
126 |
127 | 144 |
145 |
146 |
147 |
148 | 149 | 150 | 151 | 152 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 221 | 222 | 223 | 224 | 225 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | html { 2 | scroll-behavior: smooth; 3 | } 4 | 5 | body { 6 | margin: 0px; 7 | overflow-x: hidden; 8 | font-family: "Roboto Slab", "Helvetica Neue", Helvetica, Arial, sans-serif; 9 | } 10 | 11 | #gtp { 12 | display: block; 13 | position: fixed; 14 | bottom: 1rem; 15 | right: 1rem; 16 | border-radius: 0.5rem; 17 | padding: 0.3rem; 18 | background-color: #fed136; 19 | border: none; 20 | z-index: 200; 21 | transform: scale(0); 22 | transition: all 0.3s ease-out; 23 | } 24 | 25 | #gtp:hover { 26 | cursor: pointer; 27 | } 28 | 29 | #about-page-body { 30 | background-color: #d7dfed !important; 31 | } 32 | p { 33 | line-height: 1.75; 34 | } 35 | 36 | a { 37 | color: #fed136; 38 | } 39 | 40 | a:hover { 41 | color: #fec503; 42 | } 43 | .text-primary { 44 | color: #fed136 !important; 45 | } 46 | 47 | 48 | 49 | /* CSS */ 50 | .button-29 { 51 | 52 | align-items: center; 53 | appearance: none; 54 | background-image: radial-gradient(100% 100% at 100% 0, #5adaff 0, #5468ff 100%); 55 | border: 0; 56 | border-radius: 6px; 57 | box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset; 58 | box-sizing: border-box; 59 | color: #fff; 60 | cursor: pointer; 61 | display: inline-flex; 62 | font-family: "JetBrains Mono",monospace; 63 | height: 48px; 64 | justify-content: center; 65 | line-height: 1; 66 | list-style: none; 67 | overflow: hidden; 68 | padding-left: 16px; 69 | padding-right: 16px; 70 | position: relative; 71 | text-align: left; 72 | text-decoration: none; 73 | transition: box-shadow .15s,transform .15s; 74 | user-select: none; 75 | -webkit-user-select: none; 76 | touch-action: manipulation; 77 | white-space: nowrap; 78 | will-change: box-shadow,transform; 79 | font-size: 18px; 80 | position: fixed; 81 | bottom: 20px; 82 | right: 20px; 83 | } 84 | 85 | .button-29:focus { 86 | box-shadow: #3c4fe0 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset; 87 | } 88 | 89 | .button-29:hover { 90 | box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #3c4fe0 0 -3px 0 inset; 91 | transform: translateY(-2px); 92 | } 93 | 94 | .button-29:active { 95 | box-shadow: #3c4fe0 0 3px 7px inset; 96 | transform: translateY(2px); 97 | } 98 | 99 | 100 | h1, 101 | h2, 102 | h3, 103 | h4, 104 | h5, 105 | h6 { 106 | font-weight: 700; 107 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 108 | } 109 | 110 | section { 111 | padding: 100px 0; 112 | } 113 | 114 | section h2.section-heading { 115 | font-size: 40px; 116 | margin-top: 0; 117 | margin-bottom: 15px; 118 | } 119 | 120 | section h3.section-subheading { 121 | font-size: 16px; 122 | font-weight: 400; 123 | font-style: italic; 124 | margin-bottom: 75px; 125 | text-transform: none; 126 | font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif; 127 | } 128 | 129 | @media (min-width: 768px) { 130 | section { 131 | padding: 150px 0; 132 | } 133 | } 134 | 135 | .btn { 136 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 137 | font-weight: 700; 138 | } 139 | 140 | .btn-xl { 141 | font-size: 18px; 142 | padding: 20px 40px; 143 | } 144 | 145 | .btn-primary { 146 | background-color: #fed136; 147 | border-color: #fed136; 148 | } 149 | 150 | .btn-primary:active, 151 | .btn-primary:focus, 152 | .btn-primary:hover { 153 | background-color: #fec810 !important; 154 | border-color: #fec810 !important; 155 | color: white; 156 | } 157 | 158 | .btn-primary:active, 159 | .btn-primary:focus { 160 | box-shadow: 0 0 0 0.2rem rgba(254, 209, 55, 0.5) !important; 161 | } 162 | 163 | ::-moz-selection { 164 | background: #fed136; 165 | text-shadow: none; 166 | } 167 | 168 | ::selection { 169 | background: #fed136; 170 | text-shadow: none; 171 | } 172 | 173 | img::selection { 174 | background: transparent; 175 | } 176 | 177 | img::-moz-selection { 178 | background: transparent; 179 | } 180 | 181 | #mainNav { 182 | position: relative; 183 | background-color: #6f3d8c; 184 | } 185 | @media only screen and (max-width: 990px) { 186 | #mainNav { 187 | background-color: #323033; 188 | position: fixed; 189 | margin-bottom: 5px; 190 | } 191 | } 192 | #mainNav .navbar-toggler { 193 | font-size: 12px; 194 | right: 0; 195 | padding: 13px; 196 | text-transform: uppercase; 197 | color: white; 198 | border: 0; 199 | background-color: #fed136; 200 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 201 | } 202 | 203 | #mainNav .navbar-brand { 204 | color: #fed136; 205 | font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, cursive; 206 | } 207 | 208 | #mainNav .navbar-brand.active, 209 | #mainNav .navbar-brand:active, 210 | #mainNav .navbar-brand:focus, 211 | #mainNav .navbar-brand:hover { 212 | color: #fec503; 213 | } 214 | 215 | #mainNav .navbar-nav .nav-item .nav-link { 216 | font-size: 90%; 217 | font-weight: 400; 218 | padding: 0.75em 0; 219 | letter-spacing: 1px; 220 | color: white; 221 | transition: 0.6s ease; 222 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 223 | font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif; 224 | } 225 | 226 | #mainNav .navbar-nav .nav-item .nav-link.active, 227 | #mainNav .navbar-nav .nav-item .nav-link:hover { 228 | color: #fed136; 229 | } 230 | 231 | @media (min-width: 992px) { 232 | #mainNav { 233 | padding-top: 25px; 234 | padding-bottom: 25px; 235 | -webkit-transition: padding-top 0.3s, padding-bottom 0.3s; 236 | -moz-transition: padding-top 0.3s, padding-bottom 0.3s; 237 | transition: padding-top 0.3s, padding-bottom 0.3s; 238 | border: none; 239 | background-color: transparent; 240 | } 241 | #mainNav .navbar-brand { 242 | font-size: 1.75em; 243 | -webkit-transition: all 0.3s; 244 | -moz-transition: all 0.3s; 245 | transition: all 0.3s; 246 | } 247 | #mainNav .navbar-nav .nav-item .nav-link { 248 | padding: 1.1em 1em !important; 249 | } 250 | #mainNav.navbar-shrink { 251 | padding-top: 0; 252 | padding-bottom: 0; 253 | background-color: #212529; 254 | } 255 | #mainNav.navbar-shrink .navbar-brand { 256 | font-size: 1.25em; 257 | padding: 12px 0; 258 | } 259 | } 260 | 261 | header.masthead { 262 | text-align: center; 263 | color: white; 264 | background-image: url('../img/header-bg.jpg'); 265 | background-repeat: no-repeat; 266 | background-attachment: scroll; 267 | background-position: center center; 268 | -webkit-background-size: cover; 269 | -moz-background-size: cover; 270 | -o-background-size: cover; 271 | background-size: cover; 272 | } 273 | 274 | header.masthead .intro-text { 275 | padding-top: 150px; 276 | padding-bottom: 100px; 277 | } 278 | 279 | header.masthead .intro-text .intro-lead-in { 280 | font-size: 22px; 281 | font-style: italic; 282 | line-height: 22px; 283 | margin-bottom: 25px; 284 | font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif; 285 | } 286 | 287 | header.masthead .intro-text .intro-heading { 288 | font-size: 50px; 289 | font-weight: 700; 290 | line-height: 50px; 291 | margin-bottom: 25px; 292 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 293 | } 294 | 295 | @media (min-width: 768px) { 296 | header.masthead .intro-text { 297 | padding-top: 300px; 298 | padding-bottom: 200px; 299 | } 300 | header.masthead .intro-text .intro-lead-in { 301 | font-size: 40px; 302 | font-style: italic; 303 | line-height: 40px; 304 | margin-bottom: 25px; 305 | font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif; 306 | } 307 | header.masthead .intro-text .intro-heading { 308 | font-size: 75px; 309 | font-weight: 700; 310 | line-height: 75px; 311 | margin-bottom: 50px; 312 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 313 | } 314 | } 315 | 316 | .service-heading { 317 | margin: 15px 0; 318 | text-transform: none; 319 | } 320 | 321 | #portfolio .portfolio-item { 322 | right: 0; 323 | margin: 0 0 15px; 324 | } 325 | 326 | #portfolio .portfolio-item .portfolio-link { 327 | position: relative; 328 | display: block; 329 | max-width: 400px; 330 | margin: 0 auto; 331 | cursor: pointer; 332 | } 333 | 334 | #portfolio .portfolio-item .portfolio-link .portfolio-hover { 335 | position: absolute; 336 | width: 100%; 337 | height: 100%; 338 | -webkit-transition: all ease 0.5s; 339 | -moz-transition: all ease 0.5s; 340 | transition: all ease 0.5s; 341 | opacity: 0; 342 | background: rgba(254, 209, 54, 0.9); 343 | } 344 | 345 | #portfolio .portfolio-item .portfolio-link .portfolio-hover:hover { 346 | opacity: 1; 347 | } 348 | 349 | #portfolio 350 | .portfolio-item 351 | .portfolio-link 352 | .portfolio-hover 353 | .portfolio-hover-content { 354 | font-size: 20px; 355 | position: absolute; 356 | top: 50%; 357 | width: 100%; 358 | height: 20px; 359 | margin-top: -12px; 360 | text-align: center; 361 | color: white; 362 | } 363 | 364 | #portfolio 365 | .portfolio-item 366 | .portfolio-link 367 | .portfolio-hover 368 | .portfolio-hover-content 369 | i { 370 | margin-top: -12px; 371 | } 372 | 373 | #portfolio 374 | .portfolio-item 375 | .portfolio-link 376 | .portfolio-hover 377 | .portfolio-hover-content 378 | h3, 379 | #portfolio 380 | .portfolio-item 381 | .portfolio-link 382 | .portfolio-hover 383 | .portfolio-hover-content 384 | h4 { 385 | margin: 0; 386 | } 387 | 388 | #portfolio .portfolio-item .portfolio-caption { 389 | max-width: 400px; 390 | margin: 0 auto; 391 | padding: 25px; 392 | text-align: center; 393 | background-color: #fff; 394 | } 395 | 396 | #portfolio .portfolio-item .portfolio-caption h4 { 397 | margin: 0; 398 | text-transform: none; 399 | font-size: 1rem; 400 | } 401 | 402 | #portfolio .portfolio-item .portfolio-caption p { 403 | font-size: 16px; 404 | font-style: italic; 405 | margin: 0; 406 | font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif; 407 | } 408 | 409 | #portfolio * { 410 | z-index: 2; 411 | } 412 | 413 | @media (min-width: 767px) { 414 | #portfolio .portfolio-item { 415 | margin: 0 0 30px; 416 | } 417 | } 418 | 419 | .portfolio-modal { 420 | padding-right: 0px !important; 421 | } 422 | 423 | .portfolio-modal .modal-dialog { 424 | margin: 1rem; 425 | max-width: 100vw; 426 | } 427 | 428 | .portfolio-modal .modal-content { 429 | padding: 100px 0; 430 | text-align: center; 431 | } 432 | 433 | .portfolio-modal .modal-content h2 { 434 | font-size: 3em; 435 | margin-bottom: 15px; 436 | } 437 | 438 | .portfolio-modal .modal-content p { 439 | margin-bottom: 30px; 440 | } 441 | 442 | .portfolio-modal .modal-content p.item-intro { 443 | font-size: 16px; 444 | font-style: italic; 445 | margin: 20px 0 30px; 446 | font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif; 447 | } 448 | 449 | .portfolio-modal .modal-content ul.list-inline { 450 | margin-top: 0; 451 | margin-bottom: 30px; 452 | } 453 | 454 | .portfolio-modal .modal-content img { 455 | margin-bottom: 30px; 456 | } 457 | 458 | .portfolio-modal .modal-content button { 459 | cursor: pointer; 460 | } 461 | 462 | .portfolio-modal .close-modal { 463 | position: absolute; 464 | top: 25px; 465 | right: 25px; 466 | width: 75px; 467 | height: 75px; 468 | cursor: pointer; 469 | background-color: transparent; 470 | } 471 | 472 | .portfolio-modal .close-modal:hover { 473 | opacity: 0.3; 474 | } 475 | 476 | .portfolio-modal .close-modal .lr { 477 | /* Safari and Chrome */ 478 | z-index: 1051; 479 | width: 1px; 480 | height: 75px; 481 | margin-left: 35px; 482 | /* IE 9 */ 483 | -webkit-transform: rotate(45deg); 484 | -ms-transform: rotate(45deg); 485 | transform: rotate(45deg); 486 | background-color: #212529; 487 | } 488 | 489 | .portfolio-modal .close-modal .lr .rl { 490 | /* Safari and Chrome */ 491 | z-index: 1052; 492 | width: 1px; 493 | height: 75px; 494 | /* IE 9 */ 495 | -webkit-transform: rotate(90deg); 496 | -ms-transform: rotate(90deg); 497 | transform: rotate(90deg); 498 | background-color: #212529; 499 | } 500 | 501 | .timeline { 502 | position: relative; 503 | padding: 0; 504 | list-style: none; 505 | } 506 | 507 | .timeline:before { 508 | position: absolute; 509 | top: 0; 510 | bottom: 0; 511 | left: 40px; 512 | width: 2px; 513 | margin-left: -1.5px; 514 | content: ""; 515 | background-color: #e9ecef; 516 | } 517 | 518 | .timeline > li { 519 | position: relative; 520 | min-height: 50px; 521 | margin-bottom: 50px; 522 | } 523 | 524 | .timeline > li:after, 525 | .timeline > li:before { 526 | display: table; 527 | content: " "; 528 | } 529 | 530 | .timeline > li:after { 531 | clear: both; 532 | } 533 | 534 | .timeline > li .timeline-panel { 535 | position: relative; 536 | float: right; 537 | width: 100%; 538 | padding: 0 20px 0 100px; 539 | text-align: left; 540 | } 541 | 542 | .timeline > li .timeline-panel:before { 543 | right: auto; 544 | left: -15px; 545 | border-right-width: 15px; 546 | border-left-width: 0; 547 | } 548 | 549 | .timeline > li .timeline-panel:after { 550 | right: auto; 551 | left: -14px; 552 | border-right-width: 14px; 553 | border-left-width: 0; 554 | } 555 | 556 | .timeline > li .timeline-image { 557 | position: absolute; 558 | z-index: 100; 559 | left: 0; 560 | width: 80px; 561 | height: 80px; 562 | margin-left: 0; 563 | text-align: center; 564 | color: white; 565 | border: 7px solid #e9ecef; 566 | border-radius: 100%; 567 | background-color: #fed136; 568 | } 569 | 570 | .timeline > li .timeline-image h4 { 571 | font-size: 10px; 572 | line-height: 14px; 573 | margin-top: 12px; 574 | } 575 | 576 | .timeline > li.timeline-inverted > .timeline-panel { 577 | float: right; 578 | padding: 0 20px 0 100px; 579 | text-align: left; 580 | } 581 | 582 | .timeline > li.timeline-inverted > .timeline-panel:before { 583 | right: auto; 584 | left: -15px; 585 | border-right-width: 15px; 586 | border-left-width: 0; 587 | } 588 | 589 | .timeline > li.timeline-inverted > .timeline-panel:after { 590 | right: auto; 591 | left: -14px; 592 | border-right-width: 14px; 593 | border-left-width: 0; 594 | } 595 | 596 | .timeline > li:last-child { 597 | margin-bottom: 0; 598 | } 599 | 600 | .timeline .timeline-heading h4 { 601 | margin-top: 0; 602 | color: inherit; 603 | } 604 | 605 | .timeline .timeline-heading h4.subheading { 606 | text-transform: none; 607 | } 608 | 609 | .timeline .timeline-body > ul, 610 | .timeline .timeline-body > p { 611 | margin-bottom: 0; 612 | } 613 | 614 | @media (min-width: 768px) { 615 | .timeline:before { 616 | left: 50%; 617 | } 618 | .timeline > li { 619 | min-height: 100px; 620 | margin-bottom: 100px; 621 | } 622 | .timeline > li .timeline-panel { 623 | float: left; 624 | width: 41%; 625 | padding: 0 20px 20px 30px; 626 | text-align: right; 627 | } 628 | .timeline > li .timeline-image { 629 | left: 50%; 630 | width: 100px; 631 | height: 100px; 632 | margin-left: -50px; 633 | } 634 | .timeline > li .timeline-image h4 { 635 | font-size: 13px; 636 | line-height: 18px; 637 | margin-top: 16px; 638 | } 639 | .timeline > li.timeline-inverted > .timeline-panel { 640 | float: right; 641 | padding: 0 30px 20px 20px; 642 | text-align: left; 643 | } 644 | } 645 | 646 | @media (min-width: 992px) { 647 | .timeline > li { 648 | min-height: 150px; 649 | } 650 | .timeline > li .timeline-panel { 651 | padding: 0 20px 20px; 652 | } 653 | .timeline > li .timeline-image { 654 | width: 150px; 655 | height: 150px; 656 | margin-left: -75px; 657 | } 658 | .timeline > li .timeline-image h4 { 659 | font-size: 18px; 660 | line-height: 26px; 661 | margin-top: 30px; 662 | } 663 | .timeline > li.timeline-inverted > .timeline-panel { 664 | padding: 0 20px 20px; 665 | } 666 | } 667 | 668 | @media (min-width: 1200px) { 669 | .timeline > li { 670 | min-height: 170px; 671 | } 672 | .timeline > li .timeline-panel { 673 | padding: 0 20px 20px 100px; 674 | } 675 | .timeline > li .timeline-image { 676 | width: 170px; 677 | height: 170px; 678 | margin-left: -85px; 679 | } 680 | .timeline > li .timeline-image h4 { 681 | margin-top: 40px; 682 | } 683 | .timeline > li.timeline-inverted > .timeline-panel { 684 | padding: 0 100px 20px 20px; 685 | } 686 | } 687 | 688 | .team-member { 689 | margin-bottom: 50px; 690 | text-align: center; 691 | } 692 | 693 | .team-member img { 694 | width: 225px; 695 | height: 225px; 696 | border: 7px solid #fff; 697 | } 698 | 699 | .team-member h4 { 700 | margin-top: 25px; 701 | margin-bottom: 0; 702 | text-transform: none; 703 | } 704 | 705 | .team-member p { 706 | margin-top: 0; 707 | } 708 | 709 | section#contact { 710 | background-color: #212529; 711 | background-image: url('../img/map-image.png'); 712 | background-repeat: no-repeat; 713 | background-position: center; 714 | } 715 | 716 | section#contact .section-heading { 717 | color: #fff; 718 | } 719 | 720 | section#contact .form-group { 721 | margin-bottom: 25px; 722 | } 723 | 724 | section#contact .form-group input, 725 | section#contact .form-group textarea { 726 | padding: 20px; 727 | } 728 | 729 | section#contact .form-group input.form-control { 730 | height: auto; 731 | } 732 | 733 | section#contact .form-group textarea.form-control { 734 | height: 248px; 735 | } 736 | 737 | section#contact .form-control:focus { 738 | border-color: #fed136; 739 | box-shadow: none; 740 | } 741 | 742 | section#contact ::-webkit-input-placeholder { 743 | font-weight: 700; 744 | color: #ced4da; 745 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 746 | } 747 | 748 | section#contact :-moz-placeholder { 749 | font-weight: 700; 750 | color: #ced4da; 751 | /* Firefox 18- */ 752 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 753 | } 754 | 755 | section#contact ::-moz-placeholder { 756 | font-weight: 700; 757 | color: #ced4da; 758 | /* Firefox 19+ */ 759 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 760 | } 761 | 762 | section#contact :-ms-input-placeholder { 763 | font-weight: 700; 764 | color: #ced4da; 765 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 766 | } 767 | 768 | footer { 769 | padding: 25px 0; 770 | text-align: center; 771 | } 772 | 773 | footer span.copyright { 774 | font-size: 90%; 775 | line-height: 40px; 776 | text-transform: none; 777 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 778 | } 779 | 780 | footer ul.quicklinks { 781 | font-size: 90%; 782 | line-height: 40px; 783 | margin-bottom: 0; 784 | text-transform: none; 785 | font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif; 786 | } 787 | 788 | ul.social-buttons { 789 | margin-bottom: 0; 790 | } 791 | 792 | ul.social-buttons li a { 793 | font-size: 20px; 794 | line-height: 40px; 795 | display: block; 796 | width: 40px; 797 | height: 40px; 798 | -webkit-transition: all 0.3s; 799 | -moz-transition: all 0.3s; 800 | transition: all 0.3s; 801 | color: white; 802 | border-radius: 100%; 803 | outline: none; 804 | background-color: #212529; 805 | } 806 | 807 | ul.social-buttons li a:active, 808 | ul.social-buttons li a:focus, 809 | ul.social-buttons li a:hover { 810 | background-color: #fed136; 811 | } 812 | 813 | #searchMovieIndex { 814 | width: 325px; 815 | margin-left: 35%; 816 | margin-right: 35%; 817 | } 818 | 819 | #movie-poster { 820 | width: 300px; 821 | height: 350px; 822 | width: 500px; 823 | height: 600px; 824 | float: left; 825 | } 826 | #movie-div { 827 | width: 800px; 828 | } 829 | #movie-details { 830 | width: 300px; 831 | float: right; 832 | } 833 | 834 | #movies img, 835 | #movie img { 836 | width: 100%; 837 | } 838 | 839 | #movies .col-md-3 .well { 840 | height: 500px; 841 | } 842 | #movies .col-md-3 img { 843 | height: 240px; 844 | } 845 | 846 | #searchText { 847 | width: 100%; 848 | margin-left: auto; 849 | margin-right: auto; 850 | height: 55px; 851 | } 852 | 853 | #adults, 854 | #year, 855 | #genres { 856 | margin-top: 15px; 857 | margin-left: auto; 858 | margin-right: auto; 859 | text-align: center; 860 | width: 250px; 861 | } 862 | #suggest-keyword { 863 | float: left; 864 | display: block; 865 | } 866 | #filter-search { 867 | overflow-x: hidden; 868 | float: right; 869 | margin-top: 15px; 870 | width: 250px; 871 | } 872 | #Keyword { 873 | float: left; 874 | display: block; 875 | width: 200px; 876 | } 877 | #hide-button { 878 | margin-top: 40px; 879 | } 880 | .text-danger { 881 | color: red; 882 | font-size: 14px; 883 | } -------------------------------------------------------------------------------- /img/about/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/about/1.jpg -------------------------------------------------------------------------------- /img/about/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/about/2.jpg -------------------------------------------------------------------------------- /img/about/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/about/3.jpg -------------------------------------------------------------------------------- /img/about/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/about/4.jpg -------------------------------------------------------------------------------- /img/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/header-bg.jpg -------------------------------------------------------------------------------- /img/landingPage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/landingPage.png -------------------------------------------------------------------------------- /img/latestMovies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/latestMovies.png -------------------------------------------------------------------------------- /img/logos/creative-market.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/logos/creative-market.jpg -------------------------------------------------------------------------------- /img/logos/designmodo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/logos/designmodo.jpg -------------------------------------------------------------------------------- /img/logos/envato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/logos/envato.jpg -------------------------------------------------------------------------------- /img/logos/themeforest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/logos/themeforest.jpg -------------------------------------------------------------------------------- /img/map-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/map-image.png -------------------------------------------------------------------------------- /img/no-poster.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/no-poster.gif -------------------------------------------------------------------------------- /img/portfolio/01-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/01-full.jpg -------------------------------------------------------------------------------- /img/portfolio/01-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/01-thumbnail.jpg -------------------------------------------------------------------------------- /img/portfolio/02-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/02-full.jpg -------------------------------------------------------------------------------- /img/portfolio/02-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/02-thumbnail.jpg -------------------------------------------------------------------------------- /img/portfolio/03-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/03-full.jpg -------------------------------------------------------------------------------- /img/portfolio/03-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/03-thumbnail.jpg -------------------------------------------------------------------------------- /img/portfolio/04-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/04-full.jpg -------------------------------------------------------------------------------- /img/portfolio/04-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/04-thumbnail.jpg -------------------------------------------------------------------------------- /img/portfolio/05-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/05-full.jpg -------------------------------------------------------------------------------- /img/portfolio/05-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/05-thumbnail.jpg -------------------------------------------------------------------------------- /img/portfolio/06-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/06-full.jpg -------------------------------------------------------------------------------- /img/portfolio/06-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/portfolio/06-thumbnail.jpg -------------------------------------------------------------------------------- /img/searchMovie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/searchMovie.png -------------------------------------------------------------------------------- /img/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/team/1.jpg -------------------------------------------------------------------------------- /img/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/team/2.jpg -------------------------------------------------------------------------------- /img/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/team/3.jpg -------------------------------------------------------------------------------- /img/team/myImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrishi7/streamIt/8099431452acb1958600dcf24da4006d0f4565c5/img/team/myImage.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | StreamIt 13 | 14 | 15 | 19 | 20 | 21 | 26 | 31 | 36 | 41 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 103 | 104 | 105 |
106 |
107 |
108 |
Welcome To Our Website!
109 |
110 | Watch Movies and Tv Shows ad-free 111 |
112 | Search 116 | 117 |
118 |
119 | 135 |
136 | 137 | 138 |
139 |
140 |
141 |
142 |

Latest Movies

143 |

144 | Brand New with all Information and with High Quality 145 |

146 |
147 |
148 |
149 |
150 |
151 | 152 | 153 |
154 |
155 |
156 |
157 |

About Me

158 |

159 | I am a B.tech 2nd year CSE Student in MAKAUT. 160 |

161 |
162 |
163 |
164 |
165 |
166 | my-image 171 |

Hrishikesh baidya

172 |

Web Developer

173 |
174 |
175 |
176 |
177 |
178 | 179 | 180 | 181 |
182 |
183 |
184 |
185 | Copyright © StreamIt Developed By 187 | Hrishikesh Baidya in 2018 189 |
190 |
191 | 204 | 205 |
206 |
207 |
208 |
209 | 210 | 211 | 212 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/indexMovies.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function () { 2 | axios 3 | .get( 4 | 'https://api.themoviedb.org/3/discover/movie?api_key=ca5d667528ca51e527d9e4f7830d97d2&language=en-US&sort_by=popularity.desc&include_adult=false' 5 | ) 6 | .then((response) => { 7 | let movies = response.data.results; 8 | let output = ""; 9 | $.each(movies, (index, movie) => { 10 | output += ` 11 |
12 | let output = ''; 13 | $.each(movies, (index, movie) => { 14 | output += ` 15 |
16 | 17 | ${movie.title} 18 | 19 |
20 |

${movie.title}

21 | Released On

${movie.release_date}

22 | Movie Details 23 |
24 |
25 | 26 | `; 27 | }); 28 | $("#home-movies").html(output); 29 | }) 30 | .catch((err) => { 31 | console.log(err); 32 | }); 33 | }); 34 | 35 | //function to display navbar background-color on scroll 36 | window.onscroll = function () { 37 | scrollFunction(); 38 | }; 39 | function scrollFunction() { 40 | if (document.body.scrollTop > 10 || document.documentElement.scrollTop > 10) { 41 | document.getElementById("mainNav").style.backgroundColor = "#323033"; 42 | } else { 43 | document.getElementById("mainNav").style.backgroundColor = "transparent"; 44 | } 45 | } 46 | $('#home-movies').html(output); 47 | 48 | //function to display navbar background-color on scroll 49 | $(window).scroll(function () { 50 | if ( 51 | document.body.scrollTop > 20 || 52 | document.documentElement.scrollTop > 20 53 | ) { 54 | $('#mainNav').css({ 'background-color': '#323033' }); 55 | $('#gtp').css({ transform: 'scale(100%)' }); 56 | } else { 57 | $('#mainNav').css({ 'background-color': 'transparent' }); 58 | $('#gtp').css({ transform: 'scale(0)' }); 59 | } 60 | }); 61 | 62 | //function to scroll to the top when the user clicks the "goToTop" button 63 | $('#gtp').click(function () { 64 | document.body.scrollTop = 0; 65 | document.documentElement.scrollTop = 0; 66 | }); 67 | }) 68 | .catch((err) => { 69 | console.log(err); 70 | }); 71 | }); 72 | -------------------------------------------------------------------------------- /js/movie.js: -------------------------------------------------------------------------------- 1 | const notAvailable = "N/A"; 2 | 3 | function movieSelected(id) { 4 | sessionStorage.setItem("movieId", id); 5 | window.location = "singleMovie.html"; 6 | return false; 7 | } 8 | 9 | function getMovie() { 10 | let movieId = sessionStorage.getItem("movieId"); 11 | 12 | axios 13 | .get( 14 | "https://api.themoviedb.org/3/movie/" + 15 | movieId + 16 | "?api_key=ca5d667528ca51e527d9e4f7830d97d2&include_adult=false" 17 | ) 18 | .then(response => { 19 | console.log(response); 20 | let movie = response.data; 21 | let output = ` 22 |
23 | 24 | ${ 25 | !movie.poster_path 26 | ? ` 27 |
28 | ${movie.title} 29 |
30 | 31 | ` 32 | : ` 33 |
34 | ${movie.title} 37 |
38 | ` 39 | } 40 |
41 |

${movie.original_title}

42 |
    43 | ${ 44 | !movie.release_date 45 | ? ` 46 |
  • Released On:${notAvailable}
  • 47 | ` 48 | : ` 49 |
  • Released On: ${ 50 | movie.release_date 51 | }
  • 52 | ` 53 | } 54 | ${ 55 | !movie.vote_average 56 | ? ` 57 |
  • Rated:${notAvailable}
  • 58 | ` 59 | : ` 60 |
  • Rated: ${ 61 | movie.vote_average 62 | }
  • 63 | ` 64 | } 65 | ${ 66 | !movie.tagline 67 | ? ` 68 |
  • Tagline:${notAvailable}
  • 69 | ` 70 | : ` 71 |
  • Tagline: ${ 72 | movie.tagline 73 | }
  • 74 | ` 75 | } 76 | ${ 77 | !movie.production_companies[0] 78 | ? ` 79 |
  • production Companies:${notAvailable}
  • 80 | ` 81 | : ` 82 |
  • production Companies: ${ 83 | movie.production_companies[0].name 84 | }
  • 85 | ` 86 | } 87 | ${ 88 | !movie.production_countries[0] 89 | ? ` 90 |
  • production Country:${notAvailable}
  • 91 | ` 92 | : ` 93 |
  • production Country: ${ 94 | movie.production_countries[0].name 95 | }
  • 96 | ` 97 | } 98 | 99 |
100 |
101 |
102 |
103 |
104 |

Plot

105 | ${ 106 | !movie.overview 107 | ? ` 108 | ${notAvailable} 109 | ` 110 | : ` 111 | ${movie.overview} 112 | ` 113 | } 114 |
115 | View Imdb 118 | Go back to search 119 |
120 |
121 |
122 |
123 |
124 | 127 |
128 |
129 | 130 | 131 | `; 132 | $("#movie").html(output); 133 | }) 134 | .catch(err => { 135 | console.log(err); 136 | }); 137 | } 138 | 139 | let mybutton = document.getElementById("myBtn"); 140 | 141 | // When the user scrolls down 20px from the top of the document, show the button 142 | window.onscroll = function() {scrollFunction()}; 143 | 144 | function scrollFunction() { 145 | if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { 146 | mybutton.style.display = "block"; 147 | } else { 148 | mybutton.style.display = "none"; 149 | } 150 | } 151 | 152 | // When the user clicks on the button, scroll to the top of the document 153 | function topFunction() { 154 | document.body.scrollTop = 0; // For Safari 155 | document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera 156 | } -------------------------------------------------------------------------------- /js/searchMovie.js: -------------------------------------------------------------------------------- 1 | let adultFlag = false; 2 | $(document).ready(() => { 3 | $("#searchForm").on("submit", e => { 4 | let searchText = $("#searchText").val(); 5 | //adultFlag = $('#adult').value(); 6 | adultFlag = $("input[name=adult]:checked").val(); 7 | getMovies(searchText); 8 | e.preventDefault(); 9 | }); 10 | }); 11 | 12 | function getMovies(searchText) { 13 | axios 14 | .get( 15 | "https://api.themoviedb.org/3/search/movie?api_key=ca5d667528ca51e527d9e4f7830d97d2&language=en-US&query=" + 16 | searchText + 17 | "&page=1&include_adult=" + 18 | adultFlag 19 | ) 20 | .then(response => { 21 | let movies = response.data.results; 22 | 23 | let output = ""; 24 | if (movies.length > 0) { 25 | $.each(movies, (index, movie) => { 26 | output += ` 27 |
28 | ${ 29 | !movie.poster_path 30 | ? ` 31 | 34 | ${movie.title} 35 | 36 | 37 | ` 38 | : ` 39 | 42 | ${movie.title} 45 | 46 | ` 47 | } 48 |
49 |

${movie.title}

50 |

Released On
${movie.release_date}

51 | Movie Details 54 | 55 |
56 |
57 | 58 | `; 59 | }); 60 | $("#movies").html(output); 61 | } else { 62 | output = 63 | '

No Movie Available with this Name!! Please Try Another Name

'; 64 | $("#movies").html(output); 65 | } 66 | }) 67 | .catch(err => { 68 | console.log(err); 69 | }); 70 | } 71 | -------------------------------------------------------------------------------- /js/searchTv.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(document).ready(() => { 5 | $('#searchForm').on('submit', (e) => { 6 | let searchText = $('#searchText').val(); 7 | getMovies(searchText); 8 | e.preventDefault(); 9 | 10 | }); 11 | }); 12 | 13 | 14 | function getMovies(searchText){ 15 | axios.get('https://api.themoviedb.org/3/search/tv?api_key=ca5d667528ca51e527d9e4f7830d97d2&language=en-US&query='+searchText+'&page=1') 16 | .then((response) =>{ 17 | let movies = response.data.results; 18 | console.log(response); 19 | let output =''; 20 | if(movies.length>0){ 21 | $.each(movies, (index, movie) =>{ 22 | output += ` 23 |
24 | ${!movie.poster_path ? 25 | 26 | ` 27 | 28 | ${movie.name} 29 | 30 | 31 | `:` 32 | 33 | ${movie.name} 34 | 35 | ` 36 | } 37 |
38 |

${movie.name}

39 |

Released On
${movie.first_air_date}

40 | View Details 41 |

42 |
43 |
44 | 45 | `; 46 | }); 47 | $('#movies').html(output); 48 | } 49 | else { 50 | output ='

No Tv Series Available with this Name!! Please Try Another Name

' 51 | $('#movies').html(output); 52 | } 53 | }) 54 | .catch((err) =>{ 55 | console.log(err); 56 | }); 57 | } 58 | -------------------------------------------------------------------------------- /js/tv.js: -------------------------------------------------------------------------------- 1 | 2 | const notAvailable = 'N/A'; 3 | let title=''; 4 | let searchTitle =''; 5 | 6 | function movieSelected(id){ 7 | sessionStorage.setItem('movieId', id); 8 | window.location = 'singleTv.html'; 9 | return false; 10 | } 11 | 12 | 13 | 14 | function getMovie(){ 15 | let movieId = sessionStorage.getItem('movieId'); 16 | 17 | axios.get('https://api.themoviedb.org/3/tv/'+movieId+'?api_key=ca5d667528ca51e527d9e4f7830d97d2&language=en-US') 18 | .then((response) =>{ 19 | console.log(response); 20 | let movie = response.data; 21 | let output =` 22 |
23 | ${!movie.poster_path ? 24 | 25 | ` 26 |
27 | ${movie.title} 28 |
29 | 30 | `:` 31 |
32 | ${movie.title} 33 |
34 | ` 35 | } 36 | 37 |
38 |

${movie.original_name}

39 |
    40 | ${!movie.first_air_date? 41 | ` 42 |
  • Released On:${notAvailable}
  • 43 | `:` 44 |
  • Released On: ${movie.first_air_date}
  • 45 | ` 46 | } 47 | ${!movie.genres[0].name? 48 | ` 49 |
  • Rated:${notAvailable}
  • 50 | `:` 51 |
  • Rated: ${movie.genres[0].name}
  • 52 | ` 53 | } 54 | ${!movie.created_by[0].name? 55 | ` 56 |
  • Tagline:${notAvailable}
  • 57 | `:` 58 |
  • Tagline: ${movie.created_by[0].name}
  • 59 | ` 60 | } 61 | ${!movie.production_companies[0].name? 62 | ` 63 |
  • production Companies:${notAvailable}
  • 64 | `:` 65 |
  • production Companies: ${movie.production_companies[0].name}
  • 66 | ` 67 | } 68 | ${!movie.origin_country[0]? 69 | ` 70 |
  • production Country:${notAvailable}
  • 71 | `:` 72 |
  • production Country: ${movie.origin_country[0]}
  • 73 | ` 74 | } 75 | 76 |
77 |
78 |
79 |
80 |
81 |

Plot

82 | ${!movie.overview?notAvailable:movie.overview} 83 | 84 |

85 | Watch It 86 | Go back to search 87 | 88 |
89 |
90 |
91 | 92 | 93 | 94 | `; 95 | $('#movie').html(output); 96 | }) 97 | .catch((err) =>{ 98 | console.log(err); 99 | }); 100 | 101 | } 102 | -------------------------------------------------------------------------------- /movies.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | StreamIt 11 | 12 | 13 | 14 | 15 | 17 | 18 | 19 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 62 | 63 | 73 | 74 |
75 |
76 |
77 |
78 |

Search for any Movie

79 |
80 | 82 |

Are you over 18 years old?

83 |
84 | Yes
85 | No
86 |
87 | 88 |
89 |
90 |
91 |
92 |
93 |
94 | 95 | 96 |
97 |
98 |
99 |
100 | Copyright © StreamIt Developed By 101 | Hrishikesh Baidya in 2018 102 |
103 |
104 | 117 |
118 |
119 |
120 |
121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | -------------------------------------------------------------------------------- /nonsencefolder/nonsencefile: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |
5 |

Are you Adult?

6 | 11 |
12 |
13 | 14 | 15 | /*
  • production Companies: ${ 16 | !movie.production_companies[0].name?:movie.production_companies[0].name 17 | }
  • 18 | 19 | 20 |
  • production Country: ${movie.production_countries[0].name}
  • 21 | let title = encodeURIComponent(movie.original_name).replace(/%20/g, "-"); 22 | -------------------------------------------------------------------------------- /nonsencefolder/searchMoviebck.js: -------------------------------------------------------------------------------- 1 | $(document).ready(() => { 2 | $('#searchForm').on('submit', (e) => { 3 | let searchText = $('#searchText').val(); 4 | //let encodedSearchText = encodeURIComponent(searchText); 5 | //console.log(encodedSearchText); 6 | getMovies(searchText); 7 | e.preventDefault(); 8 | }); 9 | }); 10 | 11 | function getMovies(searchText){ 12 | axios.get('https://api.themoviedb.org/3/discover/movie?api_key=ca5d667528ca51e527d9e4f7830d97d2&language=en-US&sort_by=popularity.desc&include_adult=false') 13 | .then((response) =>{ 14 | let movies = response.data.results; 15 | console.log(response); 16 | let output =''; 17 | $.each(movies, (index, movie) =>{ 18 | output += ` 19 |
    20 | 21 | ${movie.title} 22 | 23 |
    24 |

    ${movie.title}

    25 | Released On

    ${movie.release_date}

    26 | Movie Details 27 |
    28 |
    29 | 30 | `; 31 | }); 32 | $('#movies').html(output); 33 | }) 34 | .catch((err) =>{ 35 | console.log(err); 36 | }); 37 | } 38 | 39 | 40 | function movieSelected(id){ 41 | sessionStorage.setItem('movieId', id); 42 | window.location = 'singleMovie.html'; 43 | return false; 44 | } 45 | 46 | 47 | 48 | function getMovie(){ 49 | let movieId = sessionStorage.getItem('movieId'); 50 | 51 | axios.get('https://api.themoviedb.org/3/movie/'+movieId+'?api_key=ca5d667528ca51e527d9e4f7830d97d2&include_adult=false') 52 | .then((response) =>{ 53 | console.log(response); 54 | let movie = response.data; 55 | let output =` 56 |
    57 |
    58 | 59 |
    60 | 61 |
    62 |

    ${movie.original_title}

    63 |
      64 | 65 |
    • Released: ${movie.release_date}
    • 66 |
    • Rated: ${movie.vote_average} / 10
    • 67 |
    • Tagline: ${movie.tagline}
    • 68 | 69 |
    70 |
    71 |
    72 |
    73 |
    74 |

    Plot

    75 | ${movie.overview} 76 |
    77 | View Imdb 78 | Go back to search 79 |
    80 |
    81 |
    82 |
    83 |
    84 | 85 |
    86 |
    87 | 88 | 89 | `; 90 | $('#movie').html(output); 91 | }) 92 | .catch((err) =>{ 93 | console.log(err); 94 | }); 95 | 96 | } 97 | -------------------------------------------------------------------------------- /singleMovie.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | StreamIt 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 59 |



    60 | 61 |
    62 |
    63 | 64 |
    65 |
    66 | 67 |
    68 |
    69 |
    70 |
    71 | Copyright © StreamIt Developed By Hrishikesh Baidya in 2018 72 |
    73 |
    74 | 87 |
    88 |
    89 |
    90 |
    91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 103 | 104 | 105 | -------------------------------------------------------------------------------- /singleTv.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | StreamIt 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 61 |



    62 | 63 |
    64 |
    65 | 66 |
    67 |
    68 |
    69 |
    70 |
    71 |
    72 | Copyright © StreamIt Developed By Hrishikesh Baidya in 2018 73 |
    74 |
    75 | 88 |
    89 |
    90 |
    91 |
    92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 102 | 103 | 104 | -------------------------------------------------------------------------------- /tv.html: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | StreamIt 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 59 | 60 | 61 |
    62 |
    63 |
    64 |
    65 |

    Search for any Show

    66 |
    67 | 68 | 73 |
    74 |
    75 |
    76 |
    77 | 78 |
    79 |
    80 | 81 |
    82 | 83 | 84 |
    85 |
    86 |
    87 |
    88 | Copyright © StreamIt Developed By Hrishikesh Baidya in 2018 89 |
    90 |
    91 | 104 |
    105 |
    106 |
    107 |
    108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /wp-content/themes/Dooplay/inc/parts/single/player_videospider.php: -------------------------------------------------------------------------------- 1 | ID, 'repeatable_fields', true); 17 | $reports = get_post_meta($post->ID, 'numreport', true); 18 | $views = dt_get_meta('dt_views_count'); 19 | $light = get_option('dt_player_luces','true'); 20 | $report = get_option('dt_player_report','true'); 21 | $ads = get_option('dt_player_ads','not'); 22 | $qual = get_option('dt_player_quality','true'); 23 | $viewsc = get_option('dt_player_views','true'); 24 | $clic = get_option('dt_player_ads_hide_clic','true'); 25 | $time = get_option('dt_player_ads_time','20'); 26 | $ads_300 = get_option('dt_player_ads_300'); 27 | $page = get_option('dt_jwplayer_page'); 28 | $gdrivepage = get_option('dt_jwplayer_page_gdrive'); 29 | // Player 30 | ?> 31 | 32 |
    33 | 34 | 35 |
    36 | 37 |
    38 |
    39 |
    40 | '. stripslashes($ads_300). '
    '; endif; ?> 41 | 42 |
    43 |
    44 |
    45 | 46 |
    47 | 48 |
    49 | 50 | 51 |
    52 | < class="metaframe rptss" src="" frameborder="0" scrolling="no" allowfullscreen> 53 |
    54 | 55 |
    56 | < class="metaframe rptss" src="ID; ?>" frameborder="0" scrolling="no" allowfullscreen> 57 |
    58 | 59 |
    60 | < class="metaframe rptss" src="ID; ?>" frameborder="0" scrolling="no" allowfullscreen> 61 |
    62 | 63 |
    64 | 65 |
    66 | 67 |
    68 |
    69 | 90 | ID, 'dtquality'))) { ?> 91 | ID, 'dtquality'))) { ?> 92 | 93 | '. comvert_number($views) .' '. __d('Views') .''; } endif; ?> 94 | 104 |
    105 |
    106 | --------------------------------------------------------------------------------