Added basic floating content box.

This commit is contained in:
2018-05-11 18:05:41 +10:00
parent 156ac1d4a4
commit 69cba6c008
5 changed files with 179 additions and 3 deletions

View File

@ -0,0 +1,57 @@
// Copyright (c) 2018 Dominic Masters
//
// MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import React from 'react';
class FloatingContentBox extends React.Component {
constructor(props) {
super(props);
}
render() {
let clazzes = "o-floating-content-box";
//Positions
let position = "middle center";
if(this.props.position) position = this.props.position;
clazzes += " " + position.split(" ").map(i => 'is-'+i).join(" ");
//Sizes`
let size = "medium";
if(this.props.size) size = this.props.size;
clazzes += " is-"+size;
//Custom Classes
if(this.props.className) clazzes += " " + this.props.className;
return (
<div className={ clazzes } >
<div className="o-floating-content-box__inner">
{ this.props.children }
</div>
</div>
);
}
}
export default FloatingContentBox;

View File

@ -25,6 +25,7 @@ import React from 'react';
import Page from './../Page';
import VideoSection from './../../section/video/VideoSection';
import Section from './../../section/Section';
import FloatingContentBox from './../../content/FloatingContentBox';
class Homepage extends React.Component {
constructor(props) {
@ -34,8 +35,10 @@ class Homepage extends React.Component {
render() {
return (
<Page style="home-page">
<VideoSection full mp4={ require('./../../videos/about/programming/programming.mp4') }>
Test
<VideoSection full>
<FloatingContentBox position="middle right" size="medium">
Hello World
</FloatingContentBox>
</VideoSection>
<Section full>

View File

@ -34,10 +34,13 @@
@import './tools/flex.scss';
@import './tools/list.scss';
@import './tools/prefix.scss';
@import './tools/_animation.scss';
@import './tools/_animation.scss';
@import './tools/_transform.scss';
@import './tools/_responsive.scss';
@import './tools/_absolute-centering.scss';
//Resets
//Elements
@ -52,6 +55,7 @@
@import './objects/main.scss';
@import './objects/_app.scss';
@import './objects/_floating-content-box.scss';
@import './objects/_loader.scss';
@import './objects/_navbar.scss';
@import './objects/_video.scss';

View File

@ -0,0 +1,49 @@
/*
* Floating Content Box
* Simple Floating Box, designed to sit content inside it.
*
* Dependencies:
* styles/settings/responsive.scss
* styles/tools/_absolute-centering.scss
* styles/tools/_responsive.scss
*
* Version:
* 1.0.0 - 2018/05/11
*/
$o-floating--inset: 5%;
.o-floating-content-box {
@include t-absolute-position-options($o-floating--inset);
max-width: 100% - ($o-floating--inset * 2);
&.is-medium,&.is-large {
width: 100%;
}
&__inner {
position: relative;
}
//Media Queries
@include t-media-query($s-xsmall-up) {
&.is-medium {
width: 450px;
}
}
@include t-media-query($s-small-up) {
&.is-large {
width: 700px;
}
}
@include t-media-query($s-large-up) {
&.is-medium {
width: 550px;
}
&.is-large {
width: 750px;
}
}
}

View File

@ -0,0 +1,63 @@
/*
* Absolute Centering
* Provides tools to absolutely center elements in various center stlyes.
*
* Dependencies:
* styles/tools/_transform.scss
*
* Version:
* 1.0.0 - 2018/05/11
*
*/
@mixin t-absolute-center-x-y() {
position: absolute;
left: 50%;
top: 50%;
@include t-translate(-50%, -50%);
}
@mixin t-absolute-center-x() {
position: absolute;
left: 50%;
@include t-translate-x(-50%);
}
@mixin t-absolute-center-y() {
position: absolute;
top: 50%;
@include t-translate-y(-50%);
}
@mixin t-absolute-position-options($inset: 0) {
position: absolute;
&.is-top {
top: $inset;
}
&.is-bottom {
bottom: $inset;
}
&.is-left {
left: $inset;
}
&.is-right {
right: $inset;
}
&.is-middle {
top: 50%;
@include t-translate-y(-50%);
}
&.is-center {
left: 50%;
@include t-translate-x(-50%);
}
&.is-middle.is-center {
@cinlude t-translate(-50%, -50%);
}
}