diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..38744c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.jekyll-cache +_site \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..77f9b00 --- /dev/null +++ b/Gemfile @@ -0,0 +1,19 @@ +source "https://rubygems.org" +gem "jekyll", "~> 4.2.2" +gem "minima", "~> 2.5" +gem 'jekyll-seo-tag' +gem 'jekyll-sitemap' +gem 'jekyll-redirect-from' + +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.12" +end +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", "~> 1.2" + gem "tzinfo-data" +end + +gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] +gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby] + +gem "webrick", "~> 1.7" diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..93c0a27 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,90 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.8.0) + public_suffix (>= 2.0.2, < 5.0) + colorator (1.1.0) + concurrent-ruby (1.1.10) + em-websocket (0.5.3) + eventmachine (>= 0.12.9) + http_parser.rb (~> 0) + eventmachine (1.2.7) + ffi (1.15.5) + forwardable-extended (2.6.0) + http_parser.rb (0.8.0) + i18n (1.10.0) + concurrent-ruby (~> 1.0) + jekyll (4.2.2) + addressable (~> 2.4) + colorator (~> 1.0) + em-websocket (~> 0.5) + i18n (~> 1.0) + jekyll-sass-converter (~> 2.0) + jekyll-watch (~> 2.0) + kramdown (~> 2.3) + kramdown-parser-gfm (~> 1.0) + liquid (~> 4.0) + mercenary (~> 0.4.0) + pathutil (~> 0.9) + rouge (~> 3.0) + safe_yaml (~> 1.0) + terminal-table (~> 2.0) + jekyll-feed (0.16.0) + jekyll (>= 3.7, < 5.0) + jekyll-redirect-from (0.16.0) + jekyll (>= 3.3, < 5.0) + jekyll-sass-converter (2.2.0) + sassc (> 2.0.1, < 3.0) + jekyll-seo-tag (2.8.0) + jekyll (>= 3.8, < 5.0) + jekyll-sitemap (1.4.0) + jekyll (>= 3.7, < 5.0) + jekyll-watch (2.2.1) + listen (~> 3.0) + kramdown (2.4.0) + rexml + kramdown-parser-gfm (1.1.0) + kramdown (~> 2.0) + liquid (4.0.3) + listen (3.7.1) + rb-fsevent (~> 0.10, >= 0.10.3) + rb-inotify (~> 0.9, >= 0.9.10) + mercenary (0.4.0) + minima (2.5.1) + jekyll (>= 3.5, < 5.0) + jekyll-feed (~> 0.9) + jekyll-seo-tag (~> 2.1) + pathutil (0.16.2) + forwardable-extended (~> 2.6) + public_suffix (4.0.7) + rb-fsevent (0.11.1) + rb-inotify (0.10.1) + ffi (~> 1.0) + rexml (3.2.5) + rouge (3.28.0) + safe_yaml (1.0.5) + sassc (2.4.0) + ffi (~> 1.9) + terminal-table (2.0.0) + unicode-display_width (~> 1.1, >= 1.1.1) + unicode-display_width (1.8.0) + webrick (1.7.0) + +PLATFORMS + x86_64-linux + +DEPENDENCIES + http_parser.rb (~> 0.6.0) + jekyll (~> 4.2.2) + jekyll-feed (~> 0.12) + jekyll-redirect-from + jekyll-seo-tag + jekyll-sitemap + minima (~> 2.5) + tzinfo (~> 1.2) + tzinfo-data + wdm (~> 0.1.1) + webrick (~> 1.7) + +BUNDLED WITH + 2.3.12 diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..ff64a48 --- /dev/null +++ b/_config.yml @@ -0,0 +1,26 @@ +title: BlueAnimates +email: hello@blueanimates.com +description: >- + I am a 3D artist who primarily works with Minecraft-style creations and renders! You can find out more about me on my FAQ page. +baseurl: "" +url: "" + +theme: minima + +plugins: + - jekyll-feed + - jekyll-seo-tag + - jekyll-redirect-from + - jekyll-sitemap + +whitelist: + - jekyll-redirect-from + +include: + - _pages + +author: BlueAnimates + +twitter: + username: BlueAnimates + card: summary \ No newline at end of file diff --git a/_includes/master/footer.html b/_includes/master/footer.html new file mode 100644 index 0000000..dd5120d --- /dev/null +++ b/_includes/master/footer.html @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/_includes/master/head.html b/_includes/master/head.html new file mode 100644 index 0000000..b69d180 --- /dev/null +++ b/_includes/master/head.html @@ -0,0 +1,9 @@ + + {{page.title}} | {{site.title}} + + + + + + + \ No newline at end of file diff --git a/src/components/master/header.html b/_includes/master/header.html similarity index 100% rename from src/components/master/header.html rename to _includes/master/header.html diff --git a/_layouts/document.html b/_layouts/document.html new file mode 100644 index 0000000..6333600 --- /dev/null +++ b/_layouts/document.html @@ -0,0 +1,11 @@ +{% include master/head.html %} +{% include master/header.html %} + + + + +
+

{{page.title}}

+ {{ content }} + {% include master/footer.html %} +
\ No newline at end of file diff --git a/_layouts/downloads.html b/_layouts/downloads.html new file mode 100644 index 0000000..63ae038 --- /dev/null +++ b/_layouts/downloads.html @@ -0,0 +1,41 @@ +{% include master/head.html %} +{% include master/header.html %} + + + + + + +
+

{{page.title}}

+
+

Credits

+

If you use any of these assets, please be sure to credit me! You are free to use these in whatever way you'd like, enjoy!

+
+
+
+ + Dog Rig (No Bends) +
+
+ + Phone Model +
+
+
+
+ + Snowman Rig (No Bends) +
+
+ + VR Headset Model +
+
+
+
+ {% include master/footer.html %} +
+ \ No newline at end of file diff --git a/_layouts/home.html b/_layouts/home.html new file mode 100644 index 0000000..d988ac7 --- /dev/null +++ b/_layouts/home.html @@ -0,0 +1,57 @@ +{% include master/head.html %} +{% include master/header.html %} + + + + +
+
+
+ +
+

Welcome!

+

I am a 3D artist who primarily works with Minecraft-style creations and renders! You can find out more about me on my FAQ page.

+ +
+
+
+
+{% include master/footer.html %} + + \ No newline at end of file diff --git a/_layouts/portfolio.html b/_layouts/portfolio.html new file mode 100644 index 0000000..f06847d --- /dev/null +++ b/_layouts/portfolio.html @@ -0,0 +1,140 @@ +{% include master/head.html %} +{% include master/header.html %} + + + + + + +
+

{{page.title}}

+
+ + +
+
+

Select a year to see content

+
+
+

2021

+

Animations

+
+
+ +

"The Beginning" - Steve's Adventures Part 1

+
+
+ +

Show Yourself | Among Us Animation #shorts

+
+
+
+
+ +

Baby Trent's Christmas | Jack Stauber Minecraft Animation

+
+
+ +

Vibrant Eyes | Dream SMP Short

+
+
+
+

Renders

+
+ + +
+
+ + +
+
+

Character Models

+
+
+ +

My Character

+
+
+ +

BadBoyHalo

+
+
+ +

Awesamdude

+
+
+
+
+

2022

+

Animations

+
+
+ +

Grian HAUNTS Mumbo | Hermitcraft Animation

+
+
+ +

We Don't Talk About Bruno | Minecraft Encanto Short

+
+
+
+

Renders

+
+
+ +

Steve's Minecraft Adventures 2 | Teaser

+
+
+ +

Main Channel Icon

+
+
+ +

Second Channel Icon

+
+
+ +

Tutorials Channel Icon

+
+
+
+
+ +

Dream Manhunt Render

+
+
+ +

Dream Animation | Teaser

+
+
+ +

Angry Emote

+
+
+ +

Fear Emote

+
+
+

Character Models

+
+
+ +

Grian

+
+
+ +

Dream

+
+
+ +
+ {% include master/footer.html %} +
+ \ No newline at end of file diff --git a/_pages/commissions/character-models.markdown b/_pages/commissions/character-models.markdown new file mode 100644 index 0000000..8c9a59d --- /dev/null +++ b/_pages/commissions/character-models.markdown @@ -0,0 +1,25 @@ +--- +layout: document +title: Commissions - Renders +permalink: /commissions/renders/ +--- + +**Original Style Renders** - $10 Nitro + + - Includes bends, advanced faces, fingers (if wanted), etc. + - Advanced facial controls + - Due to time constraints, no group renders are available in this style. + +![img](/assets/images/Screenshot_20220430_225944.png) + +___ + +**Bare Bones Style Renders** - $5 Nitro + + - Similar to Minecraft's trailer style + - No fingers, advanced faces, etc. + +
+ + +
\ No newline at end of file diff --git a/_pages/commissions/commisions.markdown b/_pages/commissions/commisions.markdown new file mode 100644 index 0000000..73ed05e --- /dev/null +++ b/_pages/commissions/commisions.markdown @@ -0,0 +1,23 @@ +--- +layout: document +title: Commissions +permalink: /commissions/ +--- + +# Blue's Minecraft Commissions! + + - I do not have a credit card, so all payments must be in Discord Nitro. + - Please do not rush me to finish your commission! I have other things to do. + - I have the right to deny or cancel a commission at any time. + - If you'd like a preset, you have to provide me with a skin. + +I will NOT make: + + - Hateful Artwork + - Nudity/NSFW/Gore/Vore + - Furries + - HD SKins Presets/Renders + +Check out the [Renders page](./renders/) to see render pricing! + +Check out the [Character Models page](./character-models/) to see character pricing! diff --git a/_pages/commissions/renders.markdown b/_pages/commissions/renders.markdown new file mode 100644 index 0000000..9e822ce --- /dev/null +++ b/_pages/commissions/renders.markdown @@ -0,0 +1,36 @@ +--- +layout: document +title: Commissions - Character Models +permalink: /commissions/character-models/ +--- + +**Presets / Character Models (Basic)** - $5 Nitro + + - Simple Extrusions & Shape Edits + + +![img](/assets/images/basic-model.png) + +___ + +**Presets / Character Models (Detailed)** - $10 Nitro + + - Custom Modeled Hair + - Advanced Extrusions/Shape Edits + + + +
+
+ +

My Character

+
+
+ +

BadBoyHalo

+
+
+ +

Awesamdude

+
+
\ No newline at end of file diff --git a/_pages/downloads.markdown b/_pages/downloads.markdown new file mode 100644 index 0000000..86fafce --- /dev/null +++ b/_pages/downloads.markdown @@ -0,0 +1,5 @@ +--- +layout: downloads +title: Downloads +permalink: /downloads/ +--- \ No newline at end of file diff --git a/_pages/faq.markdown b/_pages/faq.markdown new file mode 100644 index 0000000..38261a4 --- /dev/null +++ b/_pages/faq.markdown @@ -0,0 +1,42 @@ +--- +layout: document +title: FAQ +permalink: /faq/ +--- + + +**Q: Who inspired you to start making 3D art-related content?** + +A: People like Hapico, Blue Monkey, and many more animators inspire me to keep going with animation because it's something I really enjoy! + + + +**Q: What software do you use?** + +A: I use [Blender](https://www.blender.org/) for all of my 3D work! It's free and a great way to start your 3D journey. I highly recommend [Blender Guru's Donut Tutorial](https://www.youtube.com/watch?v=nIoXOplUvAw&list=PLjEaoINr3zgFX8ZsChQVQsuDSjEqdWMAD) for beginners. + + + +**Q: When did you start making 3D art?** + +A: I started making 3D art in Blender when I was about 9 years old, and I am now 14! I started off making Roblox renders and then gradually got into making Minecraft things and I stuck with it. + + + +**Q: How did you learn to use Blender?** + +A: I actually managed to teach myself how to use it when I first started out, which is a very dumb thing to do when you are starting in a program like Blender. Trust me, just follow tutorials.. it'll make the learning experience much better. + + + +**Q: Can I join your team? / Can you join my team?** + +A: I am not interested in working with any more teams at the moment. + + + +**Q: Can I commission you?** + +A: Of course you can! Check out my [Commissions page](/commissions/) for more details. \ No newline at end of file diff --git a/_pages/index.markdown b/_pages/index.markdown new file mode 100644 index 0000000..5fd1c3b --- /dev/null +++ b/_pages/index.markdown @@ -0,0 +1,5 @@ +--- +layout: home +title: Home +permalink: / +--- \ No newline at end of file diff --git a/_pages/portfolio.markdown b/_pages/portfolio.markdown new file mode 100644 index 0000000..c5e3b0c --- /dev/null +++ b/_pages/portfolio.markdown @@ -0,0 +1,5 @@ +--- +layout: portfolio +title: Portfolio +permalink: /portfolio/ +--- \ No newline at end of file diff --git a/assets/css/master.css b/assets/css/master.css new file mode 100644 index 0000000..9764f83 --- /dev/null +++ b/assets/css/master.css @@ -0,0 +1,225 @@ +:root { + --blue: #425a86; + --blue-light: #6d9eeb; + --blue-light-hover: #a1bae2; + --max-width: clamp(0px, calc(100% - 50px), 1280px); +} + +a { + color: var(--blue-light); + text-decoration: none; +} +img { + width: 100%; + pointer-events: none; + border-radius: 10px; +} +video { + width: 100%; +} +button { + background: var(--blue-light); + color: white; + border-radius: 4px; + border: none; + padding: 10px 20px; + cursor: pointer; + transition: 0.3s background; +} +button:hover { + background: var(--blue-light-hover); +} +#highlight { + color: var(--blue-light); +} +::selection { + background-color: var(--blue-light); + color: inherit; +} + +body { + background: rgba(225,228,232,1); + font-family: arial; + width: 100%; + max-width: var(--max-width); + overflow-x: hidden; +} + +#footer { + display: grid; + grid-template-columns: 50% 50%; + background: var(--blue); + color: white; + padding: 0px 100%; + left: 50%; + position: absolute; + transform: translate(-50%); + width: 100%; + margin-top: 25px; +} + +header { + width: 100%; + max-width: var(--max-width); + align-items: center; + color: white; + position: fixed; + display: grid; + grid-template-columns: 50% 50%; + top: 0px; + left: 50%; + transform: translate(-50%); + z-index: 10; +} +header h1 { + font-size: 24px; +} +.menu { + position: absolute; + top: 20px; + left: 200px; + cursor: default; +} +.menu a { + font-weight: bold; + color: white; + padding: 8px 20px; + border-radius: 4px; + transition: 0.3s background; +} +.menu a:hover { + background: var(--blue-light-hover); + cursor: pointer; +} +.socials a { + color: white; + margin-left: 14px; +} + +banner img { + position: absolute; + top: 0px; + left: 0px; + width: 100%; + height: 200px; + object-fit: cover; + object-position: 0px -240px; + opacity: 0.2; + filter: saturate(0); + /* transition: 2s object-position; + animation: 2s banner ease; */ +} +banner::before { + content: ""; + position: absolute; + top: 0px; + left: 0px; + width: 100%; + height: 200px; + opacity: 1; + background: var(--blue); + z-index: -2; +} + +#for-banner { + color: white; + margin: 0px 0px 90px 0px; +} + +#extra-menu { + background: white; + margin: -34px 0px 0px 0px; + padding: 0px 100%; + left: 50%; + position: absolute; + width: 100%; + transform: translate(-50%); +} +#extra-menu button { + color: black; + background: transparent; + font-weight: bold; + border-bottom: 4px transparent solid; + border-radius: 0px; + transition: 0.3s border-color, 0.3s background; +} +#extra-menu button:hover { + background: var(--blue-light-hover); +} +#extra-placeholder { + margin-top: 260px; + text-align: center; + padding: 0px; + margin-bottom: 130px; +} +.extra-content {display: none;} +.extra-content {margin-top: 140px;} + +.content { + position: absolute; + top: 100px; + left: 50%; + transform: translate(-50%); + width: 100%; + max-width: var(--max-width); +} + +.grid-40auto { + display: grid; + grid-template-columns: 40% auto; +} +.grid-5050 { + display: grid; + grid-template-columns: 50% 50%; + grid-gap: 25px; + margin-bottom: 25px; +} +#grid-S3 { + display: grid; + grid-template-columns: auto auto auto; + text-align: center; +} +#grid-S4 { + display: grid; + grid-template-columns: auto auto auto auto; + text-align: center; + grid-gap: 60px; +} +.vertical-center { + align-items: center; +} + + + +@keyframes banner { + from {object-position: 0px 0px;} + to {object-position: 0px -240px;} +} +@keyframes bigBanner { + from {transform: scale(1.2);} + to {transform: scale(1);} +} + +@media only screen and (max-width: 900px) { + #grid-5050 {grid-template-columns: auto !important;} +} +@media only screen and (max-width: 750px) { + header {margin-bottom: 70px;} + .header::before {height: 155px !important} + banner img { + object-position: 0px !important; + height: 260px !important; + } + banner::before { + height: 260px !important; + } + #for-banner { + margin: 100px 0px 54px 0px !important; + } + .menu { + position: absolute !important; + top: 80px !important; + left: 0px !important; + width: 100% !important; + } +} \ No newline at end of file diff --git a/src/images/Christmas with Friends.png b/assets/images/Christmas with Friends.png similarity index 100% rename from src/images/Christmas with Friends.png rename to assets/images/Christmas with Friends.png diff --git a/src/images/Exploration (0;00;00;00).png b/assets/images/Exploration (0;00;00;00).png similarity index 100% rename from src/images/Exploration (0;00;00;00).png rename to assets/images/Exploration (0;00;00;00).png diff --git a/assets/images/Screenshot_20220430_225944.png b/assets/images/Screenshot_20220430_225944.png new file mode 100644 index 0000000..49b2b6e Binary files /dev/null and b/assets/images/Screenshot_20220430_225944.png differ diff --git a/assets/images/Teaser_1.png b/assets/images/Teaser_1.png new file mode 100644 index 0000000..4b86104 Binary files /dev/null and b/assets/images/Teaser_1.png differ diff --git a/src/images/basic-model.png b/assets/images/basic-model.png similarity index 100% rename from src/images/basic-model.png rename to assets/images/basic-model.png diff --git a/src/images/blue-holding-pickaxe.png b/assets/images/blue-holding-pickaxe.png similarity index 100% rename from src/images/blue-holding-pickaxe.png rename to assets/images/blue-holding-pickaxe.png diff --git a/src/images/blue-waving.png b/assets/images/blue-waving.png similarity index 100% rename from src/images/blue-waving.png rename to assets/images/blue-waving.png diff --git a/src/images/for-downloads/Dog Rig.png b/assets/images/for-downloads/Dog Rig.png similarity index 100% rename from src/images/for-downloads/Dog Rig.png rename to assets/images/for-downloads/Dog Rig.png diff --git a/src/images/for-downloads/Phone.png b/assets/images/for-downloads/Phone.png similarity index 100% rename from src/images/for-downloads/Phone.png rename to assets/images/for-downloads/Phone.png diff --git a/src/images/for-downloads/Snowman Rig.png b/assets/images/for-downloads/Snowman Rig.png similarity index 100% rename from src/images/for-downloads/Snowman Rig.png rename to assets/images/for-downloads/Snowman Rig.png diff --git a/src/images/for-downloads/VR Headset.png b/assets/images/for-downloads/VR Headset.png similarity index 100% rename from src/images/for-downloads/VR Headset.png rename to assets/images/for-downloads/VR Headset.png diff --git a/src/images/models/2021/bbh.png b/assets/images/models/2021/bbh.png similarity index 100% rename from src/images/models/2021/bbh.png rename to assets/images/models/2021/bbh.png diff --git a/src/images/models/2021/blue.png b/assets/images/models/2021/blue.png similarity index 100% rename from src/images/models/2021/blue.png rename to assets/images/models/2021/blue.png diff --git a/src/images/models/2021/sam.png b/assets/images/models/2021/sam.png similarity index 100% rename from src/images/models/2021/sam.png rename to assets/images/models/2021/sam.png diff --git a/src/images/models/2022/Full Preset.png b/assets/images/models/2022/Full Preset.png similarity index 100% rename from src/images/models/2022/Full Preset.png rename to assets/images/models/2022/Full Preset.png diff --git a/src/images/models/2022/Grian.png b/assets/images/models/2022/Grian.png similarity index 100% rename from src/images/models/2022/Grian.png rename to assets/images/models/2022/Grian.png diff --git a/src/images/render-1.png b/assets/images/render-1.png similarity index 100% rename from src/images/render-1.png rename to assets/images/render-1.png diff --git a/src/images/render-2.png b/assets/images/render-2.png similarity index 100% rename from src/images/render-2.png rename to assets/images/render-2.png diff --git a/src/images/renders/2021/Banner.png b/assets/images/renders/2021/Banner.png similarity index 100% rename from src/images/renders/2021/Banner.png rename to assets/images/renders/2021/Banner.png diff --git a/src/images/renders/2021/Final Render 2.png b/assets/images/renders/2021/Final Render 2.png similarity index 100% rename from src/images/renders/2021/Final Render 2.png rename to assets/images/renders/2021/Final Render 2.png diff --git a/src/images/renders/2021/RanbooPanic2.png b/assets/images/renders/2021/RanbooPanic2.png similarity index 100% rename from src/images/renders/2021/RanbooPanic2.png rename to assets/images/renders/2021/RanbooPanic2.png diff --git a/src/images/renders/2021/Render 3.png b/assets/images/renders/2021/Render 3.png similarity index 100% rename from src/images/renders/2021/Render 3.png rename to assets/images/renders/2021/Render 3.png diff --git a/src/images/renders/2022/Angry.png b/assets/images/renders/2022/Angry.png similarity index 100% rename from src/images/renders/2022/Angry.png rename to assets/images/renders/2022/Angry.png diff --git a/src/images/renders/2022/Dream's Final Manhunt - Victory REVAMPED.png b/assets/images/renders/2022/Dream's Final Manhunt - Victory REVAMPED.png similarity index 100% rename from src/images/renders/2022/Dream's Final Manhunt - Victory REVAMPED.png rename to assets/images/renders/2022/Dream's Final Manhunt - Victory REVAMPED.png diff --git a/src/images/renders/2022/Fear.png b/assets/images/renders/2022/Fear.png similarity index 100% rename from src/images/renders/2022/Fear.png rename to assets/images/renders/2022/Fear.png diff --git a/src/images/renders/2022/Main Channel EDITED.png b/assets/images/renders/2022/Main Channel EDITED.png similarity index 100% rename from src/images/renders/2022/Main Channel EDITED.png rename to assets/images/renders/2022/Main Channel EDITED.png diff --git a/src/images/renders/2022/Second Channel EDITED.png b/assets/images/renders/2022/Second Channel EDITED.png similarity index 100% rename from src/images/renders/2022/Second Channel EDITED.png rename to assets/images/renders/2022/Second Channel EDITED.png diff --git a/src/images/renders/2022/Teaser 1.png b/assets/images/renders/2022/Teaser 1.png similarity index 100% rename from src/images/renders/2022/Teaser 1.png rename to assets/images/renders/2022/Teaser 1.png diff --git a/src/images/renders/2022/Tutorials Channel EDITED.png b/assets/images/renders/2022/Tutorials Channel EDITED.png similarity index 100% rename from src/images/renders/2022/Tutorials Channel EDITED.png rename to assets/images/renders/2022/Tutorials Channel EDITED.png diff --git a/src/images/renders/2022/teaser1.png b/assets/images/renders/2022/teaser1.png similarity index 100% rename from src/images/renders/2022/teaser1.png rename to assets/images/renders/2022/teaser1.png diff --git a/assets/images/thumbnails/1.png b/assets/images/thumbnails/1.png new file mode 100644 index 0000000..718c921 Binary files /dev/null and b/assets/images/thumbnails/1.png differ diff --git a/assets/images/thumbnails/2.png b/assets/images/thumbnails/2.png new file mode 100644 index 0000000..794dd58 Binary files /dev/null and b/assets/images/thumbnails/2.png differ diff --git a/assets/images/thumbnails/3.png b/assets/images/thumbnails/3.png new file mode 100644 index 0000000..af15518 Binary files /dev/null and b/assets/images/thumbnails/3.png differ diff --git a/assets/images/thumbnails/4.png b/assets/images/thumbnails/4.png new file mode 100644 index 0000000..9c3349c Binary files /dev/null and b/assets/images/thumbnails/4.png differ diff --git a/assets/images/thumbnails/5.png b/assets/images/thumbnails/5.png new file mode 100644 index 0000000..7f3df12 Binary files /dev/null and b/assets/images/thumbnails/5.png differ diff --git a/assets/images/thumbnails/6.png b/assets/images/thumbnails/6.png new file mode 100644 index 0000000..d53c09c Binary files /dev/null and b/assets/images/thumbnails/6.png differ diff --git a/assets/js/tab-switcher.js b/assets/js/tab-switcher.js new file mode 100644 index 0000000..702871d --- /dev/null +++ b/assets/js/tab-switcher.js @@ -0,0 +1,13 @@ +function toTab(pageName,elmnt,color) { + var i, tabcontent, tablinks; + tabcontent = document.getElementsByClassName("extra-content"); + for (i = 0; i < tabcontent.length; i++) { + tabcontent[i].style.display = "none"; + } + tablinks = document.getElementsByClassName("tab"); + for (i = 0; i < tablinks.length; i++) { + tablinks[i].style.borderColor = ""; + } + document.getElementById(pageName).style.display = "inherit"; + elmnt.style.borderColor = color; +} diff --git a/commissions/character-models/index.html b/commissions/character-models/index.html deleted file mode 100644 index eee2c51..0000000 --- a/commissions/character-models/index.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - BlueAnimates - - - - -
-
-
-

Presets / Character Models (Basic) - $5 Nitro

- - -
-
-
-

Presets / Character Models (Detailed) - $10 Nitro

- -
-
- -

My Character

-
-
- -

BadBoyHalo

-
-
- -

Awesamdude

-
-
-
- -
- - - \ No newline at end of file diff --git a/commissions/index.html b/commissions/index.html deleted file mode 100644 index 551b9a5..0000000 --- a/commissions/index.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - BlueAnimates - - - - -
-
-
-

Commissions

-
-
-

Blue's Minecraft Commissions!

- -

I will NOT make:

- -

Check out the Renders page to see render pricing!

-

Check out the Character Models page to see character pricing!

-
- -
- - - \ No newline at end of file diff --git a/commissions/renders/index.html b/commissions/renders/index.html deleted file mode 100644 index bdfd41c..0000000 --- a/commissions/renders/index.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - BlueAnimates - - - - -
-
-
-

Original Style Renders - $10 Nitro

- -
- - -
-
-
-
-

Bare Bones Style Renders - $5 Nitro

- -
- - -
-
- -
- - - \ No newline at end of file diff --git a/downloads/index.html b/downloads/index.html deleted file mode 100644 index 4720aba..0000000 --- a/downloads/index.html +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - BlueAnimates - - - - -
-
-
-

Downloads

-
-
-

Credits

-

If you use any of these assets, please be sure to credit me! You are free to use these in whatever way you'd like, enjoy!

-
-
-
-
- - Dog Rig (No Bends) -
-
- - Phone Model -
-
-
-
- - Snowman Rig (No Bends) -
-
- - VR Headset Model -
-
-
- -
- - - - - diff --git a/faq/index.html b/faq/index.html deleted file mode 100644 index 534545d..0000000 --- a/faq/index.html +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - BlueAnimates - - - - -
-
-
-

FAQ

-

Frequently Asked Questions

-
-
-

Q: Who inspired you to start making 3D art-related content?

-

A: People like Hapico, Blue Monkey, and many more animators inspire me to keep going with animation because it's something I really enjoy!

- -
- -

Q: What software do you use?

-

A: I use Blender for all of my 3D work! It's free and a great way to start your 3D journey. I highly recommend Blender Guru's Donut Tutorial for beginners.

- -
- -

Q: When did you start making 3D art?

-

A: I started making 3D art in Blender when I was about 9 years old, and I am now 14! I started off making Roblox renders and then gradually got into making Minecraft things and I stuck with it.

- -
- -

Q: How did you learn to use Blender?

-

A: I actually managed to teach myself how to use it when I first started out, which is a very dumb thing to do when you are starting in a program like Blender. Trust me, just follow tutorials.. it'll make the learning experience much better.

- -
- -

Q: Can I join your team? / Can you join my team?

-

A: I am not interested in working with any more teams at the moment.

- -
- -

Q: Can I commission you?

-

A: Of course you can! Check out my Commissions page for more details.

-
- -
- - - - - diff --git a/index.html b/index.html deleted file mode 100644 index 5ec1676..0000000 --- a/index.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - BlueAnimates - - - - -
-
-
-

BlueAnimates

-

Blender 3D: Minecraft Animation, Character Design, Lighting Artist

-
-
-
- -
-
-

About

-

Welcome to my site! I am a 3D artist who primarily works with Minecraft-style creations and renders! You can find out more about me on my FAQ page.

-

Current Projects

-

Currently, I am working on Part 2 for my series called "Steve's Minecraft Adventures".

-

I work with 4th Wall Entertainment to help write scripts and design some characters for our animations!

-
-
-
-
-
-

Contact

-

The best way to contact me is via Discord using my tag blue#7076 I reply quicker there.

-

Alternatively, you can DM me on Twitter! Don't expect an immediate response, though.

-
-
- -
-
- -
- - - - diff --git a/portfolio/2021/index.html b/portfolio/2021/index.html deleted file mode 100644 index 53b569a..0000000 --- a/portfolio/2021/index.html +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - BlueAnimates - - - - -
-
-
-

Portfolio

-

2021

-
-
-

My Progress

-

2021 was an amazing year for my work and growth. I improved a ton and I cannot wait to further expand my skills in 2022!

-
-

Animations

-
-
- -
-
- -
-
-
-
- -
-
- -
-
-

Renders

-
- - -
-
- - -
-

Character Models

-
-
- -

My Character

-
-
- -

BadBoyHalo

-
-
- -

Awesamdude

-
-
- -
- - - - - diff --git a/portfolio/2022/index.html b/portfolio/2022/index.html deleted file mode 100644 index d198ee4..0000000 --- a/portfolio/2022/index.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - BlueAnimates - - - - -
-
-
-

Portfolio

-

2022

-
-
-

Continuing the Journey

-

2021 was great, but now it's 2022 and it's time for me to further improve on my skills. My main focus will be animation and lighting! I think I am lacking in those, so I should practice more in the areas.

-
-

Animations

-
-
- -
-
- -
-
-

Renders

-
-
- -

Steve's Minecraft Adventures 2 | Teaser

-
-
- -

Main Channel Icon

-
-
- -

Second Channel Icon

-
-
- -

Tutorials Channel Icon

-
-
-
-
- -

Dream Manhunt Render

-
-
- -

Dream Animation | Teaser

-
-
- -

Angry Emote

-
-
- -

Fear Emote

-
-
-

Character Models

-
-
- -

Grian

-
-
- -

Dream

-
-
- -
- - - - - diff --git a/portfolio/index.html b/portfolio/index.html deleted file mode 100644 index ef2c4b3..0000000 --- a/portfolio/index.html +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - BlueAnimates - - - - -
-
-
-

Portfolio

-

My Best Work

-
-
-
-

2021

- -
-
-

2022

- -
-
- -
- - - - - diff --git a/src/css/master.css b/src/css/master.css deleted file mode 100644 index 17c47cf..0000000 --- a/src/css/master.css +++ /dev/null @@ -1,141 +0,0 @@ -:root { - --blue: #425a86; - --blue-light: #6d9eeb; - --max-width: clamp(0px, calc(100% - 50px), 1280px); -} - -a { - color: var(--blue-light); - text-decoration: none; -} -#highlight { - color: var(--blue-light); -} -::selection { - background-color: var(--blue-light); - color: inherit; -} - -body { - background: rgba(225,228,232,1); - font-family: arial; - width: 100%; - max-width: var(--max-width); - position: absolute; - top: 0px; - left: 50%; - transform: translate(-50%); - overflow-x: hidden; -} - -header { - display: grid; - grid-template-columns: 50% 50%; - align-items: center; - color: white; - background: var(--blue); -} -header::before { - content: ""; - background: var(--blue); - position: fixed; - z-index: -1; - width: 1000%; - height: 160px; - top: -82px; - left: 50%; - transform: translate(-50%); -} -header h1 { - font-size: 24px; -} -.menu { - position: absolute; - top: 20px; - left: 200px; -} -.menu a { - margin-right: 14px; - font-weight: bold; - color: white; -} -.socials a { - color: white; - margin-left: 14px; -} - -.header { - text-align: center; - color: white; - padding: 10% 0px; - background: var(--blue); -} -.header::before { - content: ""; - background: var(--blue); - position: fixed; - z-index: -1; - width: 1000%; - height: 89px; - top: 78px; - left: 50%; - transform: translate(-50%); - padding: 10% 0px; -} - -#grid-2575 { - display: grid; - grid-template-columns: auto auto; - align-items: center; -} -#grid-7525 { - display: grid; - grid-template-columns: auto auto; - align-items: center; -} -#grid-5050 { - display: grid; - grid-template-columns: 50% 50%; - grid-gap: 25px; - align-items: center; -} - -#grid-S3 { - display: grid; - grid-template-columns: auto auto auto; - text-align: center; -} -#grid-S4 { - display: grid; - grid-template-columns: auto auto auto auto; - text-align: center; -} - -#rn2022 { - background: white; - margin: -48px 46px 0px 46px; - padding: 10px 0px; - font-weight: bold; -} - -section img { - width: 100%; - height: 100%; - object-fit: contain; - transform: scale(0.7); - pointer-events: none; -} - -@media only screen and (max-width: 900px) { - #grid-5050 {grid-template-columns: auto !important;} -} -@media only screen and (max-width: 750px) { - header {margin-bottom: 70px;} - .header::before {height: 155px !important} - .menu { - position: absolute !important; - top: 80px !important; - left: 0px !important; - width: 100% !important; - } -} \ No newline at end of file diff --git a/src/js/component.js b/src/js/component.js deleted file mode 100644 index 31c2f55..0000000 --- a/src/js/component.js +++ /dev/null @@ -1,22 +0,0 @@ -function addComponent() { - var z, i, elmnt, file, xhttp; - z = document.getElementsByTagName("*"); - for (i = 0; i < z.length; i++) { - elmnt = z[i]; - file = elmnt.getAttribute("add-component"); - if (file) { - xhttp = new XMLHttpRequest(); - xhttp.onreadystatechange = function() { - if (this.readyState == 4) { - if (this.status == 200) {elmnt.innerHTML = this.responseText;} - if (this.status == 404) {elmnt.innerHTML = "This component failed to load, try reloading FalixNodes Desktop.";} - elmnt.removeAttribute("add-component"); - addComponent(); - } - } - xhttp.open("GET", file, true); - xhttp.send(); - return; - } - } -} \ No newline at end of file