neumorphic-google
Made with HTML, CSS, JSRecent comments (1)AcademicCat1 year agoHello fellow replers!
Recently I was reading through @Bookie0 's (sorry for ping just thought I should give credit)repls for inspiration, and I came across the Neumorphic Spotify repl.
This repl was partly inspired by that one. To achieve the hover effect, I use the
box-shadow
property withtransition
to make the animation look smooth . I also usedlinear-gradient
s to achieve the convex/concave effect.Thanks for reading this far! 📖 That's a wrap!
scripture
Made with HTML, CSS, JSRecent comments (4)AcademicCat1 year agoHi there. I just wanted to share a method whereby you can embed replit without the handicaps of the
?lite=true
url ending:- Just embed a team repl (it doesn't have to be yours).
- You can go onto any replit.com url after this, just navigate using the website.
- Talk also works - including posting, commenting, etc. Hope this helped. Have a nice day!
AcademicCat1 year agoThis is a website I created to represent myself online.
texteditor
Made with HTML, CSS, JSRecent comments (4)eliasciur1 year agoTry W3 Schools, personally idk any JS I just know HTML and CSS.
AcademicCat1 year agoHi. So I'm making a text editor in HTML, CSS and JS. Currently, this is how I'm toggling on and off the styles for the whole text like this:
//italicfunction f2(){italic = true;txt.style.fontStyle="italic";}function f2off(){italic = false;txt.style.fontStyle="normal";}function toggleitalic(){italic ? f2off() : f2();}There are no issues with this, but I wanted to add a feature where, instead of changing the whole text, change the selected text, using something like
document.getSelection();
, or anything similar. Any help would be appreciated! Thanks.