or by Category - All 3D Videos

 or by Category - All 3D Videos

  • Page:
  • 1

TOPIC: Stereoscopic CSS

Stereoscopic CSS 8 years 4 months ago #1

CSS ANIMATION wrote:
For a while I’ve been blogging about making all sorts of 3D-style effects using CSS. In this post I take it one step further and try to make the scenes look even more three dimensional.

This double-image technique is most notably used in the new Oculus Rift headset. While I don’t have one to test this against, I believe it’s possible to display HTML pages within the headset, so some form of this technique might be useful there.
Set the scene

To get started we’ll create a simple 3D scene using some HTML.
<div class="stage">
  <figure class="cube">
    <span class="back">S</span>
    <span class="top"></span>
    <span class="bottom"></span>
    <span class="left">3D!</span>
    <span class="right">S</span>
    <span class="front">C</span>
  </figure>
</div>

We have a containing stage div here that will act as a stage for the cube to sit on, and within it the cube figure itself. The cube is made up of 6 parts.

The “stage” div is needed so that the browser can establish some important 3D-related settings, such as the depth of the scene and the angle we’re looking into the scene at. These things we set with the CSS.
.stage {
  width: 480px;
  height: 500px;
  margin: 10px auto;
  position: relative;
  perspective: 1600px;
}
This CSS sets up the stage with some proportions and sets a perspective value. Perspective describes the depth of the scene, with smaller values producting more extreme-looking results. In this case, 1600 pixels looks pretty good, but you can try different values in your own scene to see how it feels.

Building the cube

The cube itself is made up of six elements. Using the CSS3 transform property, we can manipulate these spans in the 3D space and position them where we like. First though we need to tell the browser that our intention is to move things around in 3D. Some CSS achieves this.
.cube {
  transform-style: preserve-3d;
  transform-origin: 100px 50%;
  position: absolute;
  top: 120px;
  left: 140px;
}
The main parts to note here are the transform-style and transform-origin properties. These tell the browser that this and any child elements will be capable of transforming within the context of the “stage” figure, as well as describing the point around which any rotation, scaling or skewing can happen.

Next up we need to specify the dimensions of the cube faces, and then magic them into place using the transform property.
.cube span {
  color: white;
  display: block;
  font-size: 100px;
  height: 200px;
  line-height: 200px;
  opacity: 0.5;
  position: absolute;
  text-align: center;
  width: 200px;
}
.back {
  background-color: #f00;
  transform: rotateY(180deg) translateZ(100px);
}
.top {
  background-color: #ff7400;
  transform: rotateX(90deg) translateZ(100px);
}
.bottom {
  background-color: #aaa;
  box-shadow: 0 10px 100px rgba(0, 0, 0, 0.7);
  transform: rotateX(-90deg) translateZ(100px);
}
.left {
  background-color: #099;
  transform: rotateY(-90deg) translateZ(100px);
}
.right {
  background-color: #0c0;
  transform: rotateY(90deg) translateZ(100px);
}
.front {
  background-color: #ff0;
  transform: translateZ(100px);
}
To make things more readable, I’ve removed the various “-webkit” and “-moz” prefixes from the tranform properties here.

This CSS describes the general rules for the spans, that they be 200 pixels wide for example, and have white text. The rules that follow rotate and position each of the various faces using rotate and translate. Each face is given a background colour also.

Making it stereoscopic

Now that we have a scene with a 3D object, we can double it up and make it stereoscopic. Start by doubling up the HTML into a left and right div.
<div class="container">
  <div class="left">
    <div class="stage">
      <figure class="cube">
        <span class="back">S</span>
        <span class="top"></span>
        <span class="bottom"></span>
        <span class="left">3D!</span>
        <span class="right">S</span>
        <span class="front">C</span>
      </figure>
    </div>
  </div>

  <div class="right">
    <div class="stage">
      <figure class="cube">
        <span class="back">S</span>
        <span class="top"></span>
        <span class="bottom"></span>
        <span class="left">3D!</span>
        <span class="right">S</span>
        <span class="front">C</span>
      </figure>
    </div>
  </div>
</div>
The intention here is to divide the screen up into two, and place one cube beside the other. We again use some of that magic we call CSS to achieve the goal.
.container {
  margin: 0 auto;
  width: 960px;
}

.left, .right {
  height: 100%;
  overflow: hidden;
  width: 50%;
}

.left {
  float: left;
}

.right {
  float: right;
}
Our example doesn’t need to be full screen sized, so I’ve chosen to set it within a container column. Each of the two divs is set to 50% width and floated left and right respectively.

We now have two identical 3D objects. This isn’t going be enough, we’ll need to adjust for the different angles each eye needs. To do this we will override each stage perspective-origin property.
.left .stage {
  perspective-origin: 63.5% -340px;
}

.right .stage {
  perspective-origin: 36.5% -340px;
}
The left stage is given a perspective approximately two thirds along the X-axis, to mimic what your right eye would expect, and the right stage given a value of around one third. I’ve tweaked these by hand so they may need to be adjusted a little to work with your project.

The end result should be two almost identical 3D CSS scenes, with slightly different perspectives.

You can see the animated stereoscopic version here.
Source: cssanimation.rocks/stereoscopic/
Regards :)
Nguyen Quang Tri
Founder of:
3Dstreaming.org
3Dx360.net
Contact me
Last Edit: 8 years 4 months ago by N.Q.T..

  • Posts:1054 Thank you received: 28
  • N.Q.T.'s Avatar
  • N.Q.T.
  • Administrator
  • OFFLINE

  • Page:
  • 1
Time to create page: 0.335 seconds

3D Stereoscopy VR

Latest Posts

  • No posts to display.
Privacy | Terms | Contact Us | Add your URL
Get Help | 3Dstreaming.org ©2010-2023 | Feedback
Author: Nguyen Quang Tri
Privacy | Terms | Contact Us | Add your URL | 3Dstreaming.org ©2010-2023 | Feedback | Get Help | Feedback | Sitemap | Author: Nguyen Quang Tri

NOTE! This site uses cookies and similar technologies.

If you not change browser settings, you agree to it. Learn more

OK

Regulation (EU) 2016/679 of the European Parliament and of the Council of 27 April 2016 on the protection of natural persons with regard to the processing of personal data and on the free movement of such data, and repealing Directive 95/46/EC (General Data Protection Regulation) (Text with EEA relevance)

EUR-Lex - 32016R0679 - EN [ more details... ]


Terms About US Privacy


  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • link slot gacor hari ini
  • Pittsburgh Xplosion
  • Familysquare Restaurant
  • Karma Dance
  • Henry County Battlefield
  • Edge Field Farm
  • Pay in Hour
  • Belarus Docs
  • Customiza Books
  • The Urbane Litist
  • Bangrak Thai Cuisine
  • The Wombat
  • Tap Reason
  • Darkwoods My Betrothed
  • Lardodi Colonnata
  • Wallpapers Design
  • Sincerely Collins
  • Conscious Evolution Media
  • Off Fast
  • Skidrow Is My Home
  • Mamacon
  • Creative Juices Music
  • Machin Age
  • Update All Apps
  • On The Right in VA
  • Hanzawa Banker
  • Iphone Q
  • Iron Bull Tanks
  • Eucaliptus Beach
  • Mandom Beauty
  • Mynotron Setup
  • Descubre Books
  • Dbestie
  • Cxs of Teng
  • Coop Breizh
  • Cmff Events
  • Cecilias Closet
  • Bow Edison
  • Beth Morey
  • Ayswu Valentine
  • Amigando
  • Ablon Group
  • Obat Flu Batuk
  • Summer Love Film
  • Vieet Cie
  • Cursos Mooc
  • Everest Gaming
  • Chapel Hills Ds
  • Rocpri De Fest
  • Mormon Art Wiki
  • Montessori Uk
  • Nocmuzeja
  • All Hit
  • Baileys Garden
  • Cegme Norca
  • Jakarta Ultra 100
  • Livescore 12GOAL
  • 12GOAL.COM
  • Jil Love Revolution
  • J Twitter
  • M Live Post
  • Morning News Post
  • New York Independence Party
  • Red Line Book Festival
  • Sands and Hall
  • Truck Afloat
  • VSL Hair Design
  • Ada Bankia
  • Partai Merdeka
  • Azafran Solidario
  • Federation Wushu
  • Food and Water Institute
  • Rromani Connect
  • CBSBB
  • NCJPPK
  • Boom Movie
  • To Api
  • Jackass Fan
  • Nc Pc
  • Od Podcast
  • Pix Token
  • Daym Kadara Design
  • SG Soc
  • Club Wakka
  • Office Com Com Office
  • Heart Break Hotel Jetty
  • Ames Bury Music Fest
  • Voce Secu
  • Canon Comij Setup
  • Grup OP Unset
  • Printer Help Number
  • Hizliresim Upload
  • Foot Juniors
  • Let Demsey Do It
  • Montreal Memeas
  • Vidio Tsann Ex
  • Nagios Wiki
  • Schoenen Place
  • Arwen Photo
  • Avtomatic Igrat Online
  • Random Mullet
  • Toyo Navi
  • Img Couch
  • Cialis Pill Sale
  • Casaa Feliz
  • Dew Motion
  • Om Fent
  • Penggemar.Info
  • Bekerja.Info
  • BundaNagita.Info
  • RakyatIndonesia.Info
  • Bhinekka.Info
  • Persatuan.Info
  • Perbasketan.Store
  • KampungKita.Store
  • AksesorisHape.Store
  • DuniaOnlineKita.Store
  • MakanManaKita.Store
  • KerjaanBeres.Online
  • KerjaAsliJokowi.Online
  • PemiluAsongan.Online
  • DkiJakarta.Online
  • MedanTembung.Online
  • MakassarIndonesia.Online
  • BandaAceh.Online
  • BaliDenpasar.Online
  • PangkalPinang.Online
  • BantenCilegon.Online
  • Bengkulu.Online
  • Yogyakarta.Online
  • DaerahIstimewaYogyakarta.Online
  • JawaBarat.Online
  • SumateraUtara.Online
  • Provinsi-Aceh.Online
  • BaliProv.Online
  • NusaTenggaraBarat.Online
  • NusaTenggaraTimur.Online
  • PapuaBaratDaya.Online
  • SulawesiSelatan.Online
  • SumateraBarat.Online
  • InfoBarangAntikIndonesia.Blogspot.Com
  • MarlboroBrandMendunia.Blogspot.Com
  • SportF12Berlinetta.Blogspot.Com
  • CentenarioIndonesia.Blogspot.Com
  • BeritaSeputarTiktok.Blogspot.Com
  • InfoBigoViral.Blogspot.Com
  • InfoBeritaBolaTrusted.Blogspot.Com
  • BeritaCNNToday.Blogspot.Com
  • SuratKabarMedan.Blogspot.Com
  • WarkopSport.Blogspot.Com
  • KotaKetuaMedan.Blogspot.Com
  • SempurnaJayaHoki.Blogspot.Com
  • InfoAngpaoBesar.Blogspot.Com
  • GwenchanaIkan.Blogspot.Com
  • DanauTobaHealing.Blogspot.Com
  • BeritaDjakarta3030.Blogspot.Com
  • SindoHebatMedan.Blogspot.Com
  • BeritaTempoToday.Blogspot.Com
  • iPhone15Terbaik.Blogspot.Com
  • iPhone14Terbaik.Blogspot.Com
  • BeritaBarangAntikIndonesia.Wordpress.Com
  • SuryaGudangGaramTerbaik.Wordpress.Com
  • CorvetteChevroletIndonesia.Wordpress.Com
  • LanzadorIndonesia.Wordpress.Com
  • SeputarBeritaTiktok.Wordpress.Com
  • InfoLiveBigoViral.Wordpress.Com
  • InfoBeritaGameAndroid.Wordpress.Com
  • InfoCNNBerita.Wordpress.Com
  • KoranSindoIndonesia.Wordpress.Com
  • InfoSejarahMedan.Wordpress.Com
  • InfoSejarahDjakarta.Wordpress.Com
  • DuniaMusikDJasia.Wordpress.Com
  • DetikDetikKejadian.Wordpress.Com
  • GadisDesaJawa.Wordpress.Com
  • SiaranPersasia.Wordpress.Com
  • SejarahDewaYunaniKuno.Wordpress.Com
  • 18GoaloIndonesia.Wordpress.Com
  • AnePuasiTongkim.Wordpress.Com
  • SejarahMitologiDunia.Wordpress.Com
  • DanauTobaMedanKolaborasi.Wordpress.Com
  • InfoBeritaPolitik2023-2024.Blogspot.Com
  • TravelBlogIndonesiaa.Blogspot.Com
  • SongOfTheMoonn.Blogspot.Com
  • PenyediaJasaSinta.Wordpress.Com
  • PenggunaGacor.Wordpress.Com
  • PenyediaBatuAlam.Wordpress.Com
  • SelatBiru.Wordpress.Com
  • MesinPutar.Wordpress.Com
  • ArmadaUngu.Wordpress.Com
  • AwanBasah.Wordpress.Com
  • KerangPantai.Wordpress.Com
  • KarangIkan.Wordpress.Com
  • GunungKabut.Wordpress.Com
  • DuriIkan.Wordpress.Com
  • PeluruBesi.Wordpress.Com
  • CangkangKepiting.Wordpress.Com
  • LubangPenjepit.Wordpress.Com
  • TaliTerikat.Wordpress.Com
  • HijauLurus.Wordpress.Com
  • KristalHitam.Wordpress.Com
  • KulitMerah.Wordpress.Com
  • BolaMelambung.Wordpress.Com
  • SelendangTerbang.Wordpress.Com
  • PendakiTerbang.Blogspot.Com
  • SelancarAir.Blogspot.Com
  • PurnamaSumatra.Blogspot.Com
  • LingkaranPasir.Blogspot.Com
  • SabunBusa.Blogspot.Com
  • SeleraPikiran.Blogspot.Com
  • JamurPanjang.Blogspot.Com
  • SeleraJatuh.Blogspot.Com
  • KepalaSantai.Blogspot.Com
  • AspalNempel.Blogspot.Com
  • TopiTerbelah.Blogspot.Com
  • AsbuKabu.Blogspot.Com
  • KepalaJenung.Blogspot.Com
  • KepalaJenong.Blogspot.Com
  • BerbuluIkal.Blogspot.Com
  • GunungDarah.Blogspot.Com
  • PendayungAir.Blogspot.Com
  • RokokBasah.Blogspot.Com
  • KerangDekil.Blogspot.Com
  • KayuBerduril.Blogspot.Com
  • SiputPenjilat.Blogspot.Com
  • LeleListrik.Blogspot.Com
  • LelakiSampah.Blogspot.Com
  • SambalPecak.Blogspot.Com
  • TumisKerang.Blogspot.Com
  • Daftar Link Penting Situs Slot Online Resmi

  • slot thailand
  • slot 88
  • slot 5k
  • slot 10k
  • slot thailand
  • bandar casino
  • slot maxwin
  • slot 4d
  • slot pulsa
  • slot88
  • slot dana
  • slot thailand
  • garansi
  • bola
  • pg soft
  • thailand
  • slot gacor
  • slot dana
  • slot pg soft
  • judi bola
  • slot gacor
  • slot pragmatic
  • slot pulsa
  • slot 5000
  • slot 4d
  • slot 5k
  • slot maxwin
  • slot 10k
  • slot 5k
  • slot dana
  • slot qris
  • slot gacor
  • slot88
  • slot 5k
  • slot 10k
  • slot thailand
  • slot dana
  • slot qris
  • slot 88
  • slot pulsa
  • slot gacor 4d
  • slot demo
  • slot 5k
  • slot dana
  • slot 88
  • slot 10k
  • slot qris
  • slot garansi kekalahan
  • slot anti rungkad
  • slot nolimit city
  • slot bca
  • slot pg soft
  • slot 5k
  • slot 10k
  • slot mahjong
  • slot garansi kekalahan
  • slot thailand
  • slot gacor 5000
  • slot mpo
  • slot idn
  • slot thailand
  • slot gacor 5000
  • slot 5 ribu
  • slot resmi
  • slot 10k
  • slot 5000
  • slot maxwin
  • slot demo
  • slot dana
  • nolimit
  • slot mahjong
  • slot 10k
  • slot 5k
  • slot qris
  • slot gacor
  • nolimit
  • slot maxwin
  • slot pragmatic
  • slot dana
  • slot ovo
  • slot bca
  • slot thailand
  • slot 4d
  • slot mahjong
  • slot maxwin
  • slot pulsa
  • slot garansi kekalahan
  • slot dana
  • slot88
  • slot 777
  • slot demo
  • Find Your Favorit Games Here!

  • https://ternate.ut.ac.id/img/
  • https://isbest.ut.ac.id/rank1/