Skip to content

Mr. xcHong

simple ideas change the world

  • Blog
  • Portfolio
    • Material Design Lite for Meteor
    • Adobe Audition Project Cleanup Helper
    • Javascript Process Queue
    • Javascript Set Race Helper
    • iNotiC – Tiny Notification System
    • HTML5 Responsive Digital Clock
  • Project V.E.S.C
    • Dev. Logs
  • Lab
    • Porter
      The merged system from Javascript Porter and CSS Porter.
    • Full-screen Clock
    • LC-3 Simulator
    • You Shout
  • Ideas
  • Archive
  • Resources

xc-h.net

Copyright © 2018 xc-h.net. All Rights Reserved.

Category: Academy

LESS declaration block as mixins arguments

.some-mixin(
@titleFont: '',
@bodyStyle: {},
) {
& > .title {
font: @titleFont;
}
& > .body {
@bodyStyle();
}
}
.some-component {
.some-mixin(
@titleFont: bold 1.5em Helvetica,
@bodyStyle: {
color: gray;
},
);
}

compiles to:

.some-component > .title {
font: bold 1.5em Helvetica;
}
.some-component > .body {
color: gray;
}
Posted on September 4, 2018Categories Academy, BlogTags CSS, LESSLeave a comment on LESS declaration block as mixins arguments

ECE 385 Laboratory 3

 

Lab_3_4bit_right_shift_register
schematic of a 4 bit right shift register
Truth table of a 4 bit serial synchronous counter
Truth table of a 4 bit serial synchronous up counter
schematic of a 4 bit serial synchronous up counter
schematic of a 4 bit serial synchronous up counter
Posted on January 28, 2013Categories AcademyLeave a comment on ECE 385 Laboratory 3

Effects of CSS attribute – visibility

This is a demo of how CSS attribute visibility affects objects.
Continue reading Effects of CSS attribute – visibility

Posted on September 21, 2012March 15, 2016Categories Academy, BlogTags CSS, HTML5Leave a comment on Effects of CSS attribute – visibility

Color Wonder

Move your mouse into the white area with a gray border, you should be able to see a view like the screen shot below:

See the Pen Color Wonder by Xingchen Hong (@Zodiase) on CodePen.0

Posted on July 25, 2012February 3, 2016Categories Academy, Blog, LabTags JavascriptLeave a comment on Color Wonder
Proudly powered by WordPress