SEO

October 20, 2011

YouTube Captions are Valid CSS!? (Unbelievable CODE!) Call Eric Meyer!

YouTube Captions, Valid CSS!!! (See source for unbelievable CODE!) Call Eric Meyer!

YouTube Captions, Valid CSS!!! (See source for unbelievable CODE!)

And while i invented this two years ago...(check an older video if you don't believe), I never copied and pasted it into an edit field...but tonight, as I celebrate Halloween early, I thought I'd give it a go...and Holy Mother of Eric Meyer, THIS MOTHERFUCKER CAN HUNT!!! I don't get it at all because it's ridden with time codes and uncommented comments by the incredible CSS3 guru whom you know for his Normalizer and whom I know for mashing up his 'quote bubble speech balloons into incredible confetti...', i think his name is Nicholas, but i'm not big on details..., but anyway, nevertheless, his was the first file I had in my Docs when I was doing another YouTube Transcript (Captions)--helping out the accessibility cause (because Eric Meyer can't be bothered to transcribe his CSS posts onto YouTube [whatsoever--price of Reset Fame, i guess])... *this should connect to beginnning of runon at top ...and LO AND BEHOLD...(as Edgar Allen Poe said FIRST and Best and then Nic Roeg made my favorite film from it)! EUREKA!
  • if you go to YouTube to watch the CSS Scroll by, make sure you hit the 'caption' 'annotation' icon that looks like what YouTube thinks that should look like (under the video)!
CSS tutorial - Using borders to produce angled shapes
0:00:28.920 0:00:29.170

Using borders to produce angled shapes

This 0:00:28.920 0:00:29.170 is a suppliment to the tutorial, and is here only for illustrative purposes. It is not 0:00:28.920 0:00:29.170 part of the main tutorial.

0:00:28.930 0:00:29.180

These examples will not work in Netscape 4 or WebTV, because they do not allow you 0:00:28.930 0:00:29.180 to define individual borders, or Escape because it does not handle borders 0:00:28.940 0:00:29.190 correctly. Internet explorer 4 and 5 may have trouble with some of the 0:00:28.940 0:00:29.190 examples due to their problems with the box model.

0:00:28.940 0:00:29.190

Note that these examples are based on you using the default 'Moosified' style for this 0:00:28.949 0:00:29.199 page, where the background colour of the body is #f6f6f6. If you use 0:00:28.949 0:00:29.199 the other styles, the shapes may not work correctly.

0:00:28.949 0:00:29.199

This might look like this:

0:00:28.960 0:00:29.210
body { styles go in here }
0:00:28.960 0:00:29.210

In this case, the 'body' is known as the selector. This can get more complicated, 0:00:28.960 0:00:29.210 and can include many different selectors.

0:00:28.960 0:00:29.210

For several elements to use the same style, you can separate them with commas:

0:00:28.970 0:00:29.220
p, div, span { styles go in here }
0:00:28.970 0:00:29.220

The syntax for the styles follows this pattern:

0:00:28.970 0:00:29.220
name_of_style_attribute: value;
0:00:28.970 0:00:29.220

You can include as many styles as you want inside the { and } curly braces. Occasionally, 0:00:28.980 0:00:29.230 there may be more than one value for a single style, for example with the border attribute:

0:00:28.990 0:00:29.240
border: 3px double red;
0:00:28.990 0:00:29.240

To define styles that should only target elements with a certain class, put a fullstop 0:00:28.990 0:00:29.240 then the name of the class, after the element. This might look like:

0:00:29.000 0:00:29.250
p.nameofclass { styles go in here }
0:00:29.000 0:00:29.250

This would also need the class to be written inside the HTML 'p' element tags 0:00:29.000 0:00:29.250 to which it refers:

0:00:29.000 0:00:29.250
<p class="nameofclass">
0:00:29.000 0:00:29.250

If we use the syntax without specifying an element name, then every element of class 0:00:29.010 0:00:29.260 'nameofclass', not just p tags, will use this style:

0:00:29.010 0:00:29.260
.nameofclass { styles go in here }
0:00:29.010 0:00:29.260

There are also some pseudo-classes such as :hover. This particular one 0:00:29.020 0:00:29.270 will only work in some browsers (most notably, Internet Explorer 6-) with 0:00:29.020 0:00:29.270 'a' elements. It will be applied when the mouse hovers over the element.

0:00:29.029 0:00:29.279
a:hover { color: red; }
0:00:29.029 0:00:29.279

The pseudo-classes can be used along with classes, like this:

0:00:29.029 0:00:29.279
a.nameofclass:hover { color: red; }
0:00:29.029 0:00:29.279

One of the most powerful uses of this pseudo class is to produce menus 0:00:29.039 0:00:29.289 written only using pure CSS.

0:00:29.039 0:00:29.289

If an element has been defined with an ID then it can be given its own 0:00:29.039 0:00:29.289 style by using the ID selector. Try to restrict 0:00:29.050 0:00:29.300 this to cases where it is actually needed:

0:00:29.050 0:00:29.300
#id { color: red; font-weight: bold; }
0:00:29.050 0:00:29.300

You can also target the specific element type, combined with the ID selector:

0:00:29.050 0:00:29.300
element_type#id { color: red; font-weight: bold; }
0:00:29.060 0:00:29.310

Now for some clever stuff. It is possible to target an element based on what its parent 0:00:29.060 0:00:29.310 elements are, by writing the name of the parent, followed by a space, followed 0:00:29.070 0:00:29.320 by the name of the element you want to target. Note that the parent does 0:00:29.070 0:00:29.320 not have to be a direct parent. It could be anywhere in the chain of ancestors. 0:00:29.080 0:00:29.330 For example, if you want to assign a style to li elements where one of their 0:00:29.080 0:00:29.330 parents is a ul whose parents include a td whose parents 0:00:29.080 0:00:29.330 include a tr whose parents include a table whose parents include 0:00:29.090 0:00:29.340 the body, you can write this:

0:00:29.090 0:00:29.340
body table tr td ul li { styles go in here }
0:00:29.090 0:00:29.340

If you also want to assign that style to p elements, you can combine this 0:00:29.100 0:00:29.350 with the comma, as shown earlier:

0:00:29.100 0:00:29.350
body table tr td ul li, { styles go in here }
0:00:29.100 0:00:29.350

Or mix that up however you like. You can also combine it with class selectors. For 0:00:29.110 0:00:29.360 example, this will match all li elements whose parents include 0:00:29.110 0:00:29.360 a td of class fish:

0:00:29.110 0:00:29.360
td.fish li { styles go in here }
0:00:29.119 0:00:29.369

If at any time you define two or more conflicting styles, the more specific one should be used 0:00:29.119 0:00:29.369 by the browser. If you use an inline style, that should override 0:00:29.130 0:00:29.380 other styles. There are exceptions to these rules, but I will not 0:00:29.130 0:00:29.380 go into those here.

0:00:29.130 0:00:29.380

All styles will have a default value, and that may be different for different elements 0:00:29.140 0:00:29.390 (for example, the border style has a default value 0:00:29.140 0:00:29.390 of 'none', but most browsers use something like '2px groove black' 0:00:29.140 0:00:29.390 as the default border for a fieldset). If you have styled an element with a generic 0:00:29.150 0:00:29.400 style, and you want to reset it to its default style for that specific element, 0:00:29.150 0:00:29.400 you will need to manually set it back to its default value. For example, you could set 0:00:29.160 0:00:29.410 all paragraphs to have a 1 pixel border, then set paragraphs not to have a border if they 0:00:29.160 0:00:29.410 are inside a div:

0:00:29.160 0:00:29.410
p { border: 1px solid black; } div { border: none; }
0:00:29.170 0:00:29.420

Some styles can be represented in a number of different ways. For example, the border 0:00:29.170 0:00:29.420 style can be used to apply a border to all sides of an element:

0:00:29.180 0:00:29.430
p { border: 1px solid black; }
0:00:29.180 0:00:29.430

It is also possible to specify one border at a time:

0:00:29.180 0:00:29.430
p { border-top: 1px solid black; 0:00:29.180  0:00:29.430  border-right: 1px solid green; border-bottom: 1px solid black; 0:00:29.190  0:00:29.440  border-left: 3em solid black; }
0:00:29.190 0:00:29.440

It is also possible to specify the thickness, colour, and style separately. Each one can 0:00:29.190 0:00:29.440 accept 1, 2, 3 or 4 values. If one value is specified, all sides will 0:00:29.199 0:00:29.449 use it. If you specify two, the first will be used by top and bottom, and the 0:00:29.199 0:00:29.449 second will be used by right and left. If you specify three, the first will be used 0:00:29.210 0:00:29.460 by top, the second will be used by right and left, and the third will be used 0:00:29.210 0:00:29.460 by bottom. If you specify four, they will be used by top, right, bottom and 0:00:29.220 0:00:29.470 left respectively:

0:00:29.220 0:00:29.470
p { border-width: 1px 2px 3px; 0:00:29.220  0:00:29.470  border-style: solid solid solid double; border-color: black green; 0:00:29.220  0:00:29.470  }
0:00:29.220 0:00:29.470

And this can be done for one side at a time as well. This is generally most useful 0:00:29.230 0:00:29.480 to specify a normal style, then override it for just one side:

0:00:29.230 0:00:29.480
p { border: 1px solid black; 0:00:29.230  0:00:29.480  border-right-color: green; }
0:00:29.240 0:00:29.490

These styles are all considered to be as specific as each other, so if you specify 0:00:29.240 0:00:29.490 the border-right style and then the border style, the 0:00:29.240 0:00:29.490 right border will be styled according to what you define in the 0:00:29.250 0:00:29.500 border style.

Last modified: 4 September 0:00:29.250 0:00:29.500 2008

  1. Previous
  2. Next

If all four borders are defined as being 0:00:29.260 0:00:29.510 thick, they should be tapered into each other:

0:00:29.260 0:00:29.510
border-top: 20px solid red; border-bottom: 20px solid #fc0; 0:00:29.260  0:00:29.510  border-left: 20px solid blue; border-right: 20px solid green;
0:00:29.260 0:00:29.510

MultiColour Square

All of these examples are done using a 0:00:29.270 0:00:29.520 <div> element, with no contents:

<div style="style declarations"></div>
0:00:29.279 0:00:29.529

The lack of contents makes all points sharp. Some browsers still leave space for the non-existent 0:00:29.279 0:00:29.529 contents, so we can remove that space by using the following 0:00:29.279 0:00:29.529 combination of styles:

0:00:29.279 0:00:29.529
font-size: 0px; line-height: 0%; width: 0px; 0:00:29.289  0:00:29.539  border-top: 20px solid red; border-bottom: 20px solid #fc0; 0:00:29.289  0:00:29.539  border-left: 20px solid blue; border-right: 20px solid green;
0:00:29.289 0:00:29.539

Right side of MultiColour square

0:00:29.300 0:00:29.550

If we do not define a border, the other borders stop abruptly, and do not taper into 0:00:29.300 0:00:29.550 the space that would be used by that border:

font-size: 0px; line-height: 0%; 0:00:29.310  0:00:29.560  width: 0px; border-top: 20px solid red; 0:00:29.310  0:00:29.560  border-bottom: 20px solid #fc0; border-left: none; 0:00:29.310  0:00:29.560  border-right: 20px solid green;
0:00:29.310 0:00:29.560

Top-right corner side of MultiColour square

0:00:29.320 0:00:29.570

We get a similar effect by removing two 0:00:29.320 0:00:29.570 borders:

font-size: 0px; line-height: 0%; 0:00:29.320  0:00:29.570  width: 0px; border-top: 20px solid red; 0:00:29.330  0:00:29.580  border-bottom: none; border-right: 20px solid green;
0:00:29.330 0:00:29.580

One part of the top-right corner side of MultiColour square

0:00:29.330 0:00:29.580

By making one of the two remaining borders 0:00:29.340 0:00:29.590 the same colour as the background, we are left with a sloping triangle:

0:00:29.340 0:00:29.590
font-size: 0px; line-height: 0%; width: 0px; 0:00:29.340  0:00:29.590  border-top: 20px solid red; border-right: 20px solid #f6f6f6;
0:00:29.350 0:00:29.600

Or a longer version

0:00:29.350 0:00:29.600

Increasing the width makes a longer bar - Note, Microsoft Internet Explorer 4 and 0:00:29.360 0:00:29.610 5 take the width as being the full length, including the sloping part, so they cannot 0:00:29.360 0:00:29.610 display this example. Other browsers take the width as excluding the border, so not 0:00:29.369 0:00:29.619 the sloping part:

font-size: 0px; line-height: 0%; 0:00:29.369  0:00:29.619  width: 100px; border-top: 20px solid red; 0:00:29.369  0:00:29.619  border-right: 20px solid #f6f6f6;
0:00:29.369 0:00:29.619

Right side of MultiColour square with right border thicker

0:00:29.369 0:00:29.619

If we increase the width of the side border, 0:00:29.380 0:00:29.630 we get a sharper triangle, which is made sharper by being longer:

0:00:29.390 0:00:29.640
font-size: 0px; line-height: 0%; width: 0px; 0:00:29.390  0:00:29.640  border-top: 20px solid red; border-bottom: 20px solid #fc0; 0:00:29.390  0:00:29.640  border-right: 40px solid green;
0:00:29.390 0:00:29.640

Right side of MultiColour square with right border thicker and top and bottom borders 0:00:29.400 0:00:29.650 thinner

0:00:29.400 0:00:29.650

If we decrease the size of the top and bottom borders, we can make the triangle even 0:00:29.410 0:00:29.660 narrower and sharper:

font-size: 0px; line-height: 0%; 0:00:29.410  0:00:29.660  width: 0px; border-top: 10px solid red; 0:00:29.410  0:00:29.660  border-bottom: 10px solid #fc0; border-right: 40px solid green;
0:00:29.410 0:00:29.660

Various shapes

0:00:29.410 0:00:29.660

By using these various techniques, and setting some of the border colours to the 0:00:29.420 0:00:29.670 same as the background, we can create a variety of different arrow-based shapes

0:00:29.420 0:00:29.670

Down arrow

font-size: 0px; line-height: 0%; 0:00:29.430  0:00:29.680  width: 0px; border-top: 20px solid #77c; 0:00:29.430  0:00:29.680  border-left: 10px solid #f6f6f6; border-right: 10px solid #f6f6f6;
0:00:29.430 0:00:29.680

Up arrow

font-size: 0px; line-height: 0%; 0:00:29.440  0:00:29.690  width: 0px; border-bottom: 20px solid #77c; 0:00:29.440  0:00:29.690  border-left: 10px solid #f6f6f6; border-right: 10px solid #f6f6f6;
0:00:29.449 0:00:29.699

Left arrow

0:00:29.449 0:00:29.699 0:00:29.449 0:00:29.699
font-size: 0px; line-height: 0%; width: 0px; 0:00:29.449  0:00:29.699  border-top: 10px solid #f6f6f6; border-right: 20px solid #77c; 0:00:29.460  0:00:29.710  border-bottom: 10px solid #f6f6f6;
0:00:29.460 0:00:29.710

Right arrow

font-size: 0px; line-height: 0%; 0:00:29.460  0:00:29.710  width: 0px; border-top: 10px solid #f6f6f6; 0:00:29.470  0:00:29.720  border-left: 20px solid #77c; border-bottom: 10px solid #f6f6f6;
0:00:29.470 0:00:29.720

Hourglass

font-size: 0px; line-height: 0%; 0:00:29.480  0:00:29.730  width: 0px; border-top: 20px solid #77c; 0:00:29.480  0:00:29.730  border-left: 10px solid #f6f6f6; border-right: 10px solid #f6f6f6; 0:00:29.480  0:00:29.730  border-bottom: 20px solid #77c;
0:00:29.480 0:00:29.730

Sideways hourglass

0:00:29.480 0:00:29.730 0:00:29.490 0:00:29.740
font-size: 0px; line-height: 0%; width: 0px; 0:00:29.490  0:00:29.740  border-left: 20px solid #77c; border-top: 10px solid #f6f6f6; 0:00:29.490  0:00:29.740  border-bottom: 10px solid #f6f6f6; border-right: 20px solid #77c;
0:00:29.500 0:00:29.750

Combining shapes

0:00:29.500 0:00:29.750 0:00:29.500 0:00:29.750 0:00:29.529 0:00:29.779
0:00:29.510 0:00:29.760
0:00:29.520 0:00:29.770 0:00:29.529 0:00:29.779
0:00:29.550 0:00:29.800
0:00:29.550 0:00:29.800

The div elements can even detect mouse events, so you could use this as a game controller 0:00:29.550 0:00:29.800 ... just a thought.

0:00:29.550 0:00:29.800

This could be done using CSS positioning, but I have used tables here

0:00:29.560 0:00:29.810 0:00:29.560 0:00:29.810
0:00:29.570 0:00:29.820
0:00:29.580 0:00:29.830 0:00:29.580 0:00:29.830 0:00:29.590 0:00:29.840
0:00:29.600 0:00:29.850 0:00:29.600 0:00:29.850
0:00:29.610 0:00:29.860
  • General syntax
  • 0:00:29.610 0:00:29.860
  • Fonts
  • Colours 0:00:29.610 0:00:29.860 and measurements
  • Dependence
  • 0:00:29.610 0:00:29.860
  • Referencing external files
  • 0:00:29.610 0:00:29.860
  • Inline style
  • 0:00:29.610 0:00:29.860
  • Positioning
  • Media 0:00:29.619 0:00:29.869 types
  • Browser 0:00:29.619 0:00:29.869 problems
  • 0:00:29.619 0:00:29.869
  • Margin Collapsing
  • 0:00:29.619 0:00:29.869
  • Using borders to produce angled shapes
  • 0:00:29.619 0:00:29.869

    Printing

    Other tutorials

    Q
    0:00:29.630 0:00:29.880

    For example, the following document fragment and style 0:00:29.630 0:00:29.880 sheet: 0:00:29.630 0:00:29.880

    Header

    h2 { display: run-in; }

    Text

    :before { display: block; content: 0:00:29.640 0:00:29.890 'Some'; } 0:00:29.640 0:00:29.890 ...would render in exactly the same way as the following document fragment and style 0:00:29.640 0:00:29.890 sheet: 0:00:29.640 0:00:29.890

    Header

    h2 { display: run-in; }

    Some Text

    span { display: 0:00:29.640 0:00:29.890 block } 0:00:29.650 0:00:29.900 Similarly, the following document fragment and style sheet: 0:00:29.650 0:00:29.900

    Header

    h2 { display: run-in; } h2:after { display: block; content: 'Thing'; 0:00:29.650 0:00:29.900 }

    Text

    0:00:29.650 0:00:29.900 ...would render in exactly the same way as the following document fragment and style 0:00:29.660 0:00:29.910 sheet: 0:00:29.660 0:00:29.910

    Header Thing

    h2 { display: block; } 0:00:29.660 0:00:29.910 span { display: block; }

    Text

    0:00:29.660 0:00:29.910 How does one punch out the corner of an element and put something in the space created? 0:00:29.670 0:00:29.920

     

    0:00:29.670 0:00:29.920

    coma purported

    0:00:29.670 0:00:29.920

    The page you are viewing right now exists 0:00:29.670 0:00:29.920 to show off what can be accomplished with pure CSS1, 0:00:29.670 0:00:29.920 and that's all. This variant on complexspiral doesn't even use any CSS2 to accomplish its 0:00:29.680 0:00:29.930 magic. Remember: as you look this demo over, there is no Javascript here, nor 0:00:29.680 0:00:29.930 are any PNGs being used, nor do I employ any proprietary extensions 0:00:29.690 0:00:29.940 to CSS or any other language. It's all done using straight W3C-recommended markup and 0:00:29.690 0:00:29.940 styling, all validated, plus a total of four (4) images. 0:00:29.699 0:00:29.949

    0:00:29.699 0:00:29.949 Unfortunately, not every browser supports all of CSS1, and only those browsers which 0:00:29.699 0:00:29.949 fully and completely support CSS1 will get this right. Despite some claims to the contrary, 0:00:29.710 0:00:29.960 IE6/Win's rendering of this page is not correct, as it (as well as some other browsers) 0:00:29.710 0:00:29.960 doesn't correctly support background-attachment: fixed for any element other than the 0:00:29.710 0:00:29.960 body. That makes it impossible to pull off the intended effect. Other browsers 0:00:29.720 0:00:29.970 may or may not get the effect right.

    0:00:29.720 0:00:29.970

    Hands-on: Things to Examine

    0:00:29.720 0:00:29.970 Before you start, make sure you're viewing this page in one of the browsers mentioned 0:00:29.730 0:00:29.980 above. Otherwise the descriptions to follow won't match what you see. 0:00:29.730 0:00:29.980

    0:00:29.730 0:00:29.980 The first, easiest thing to do is scroll the page vertically. Make sure you scroll all 0:00:29.740 0:00:29.990 the way to the very end of the page and back. Notice how the various areas with colored 0:00:29.740 0:00:29.990 backgrounds also appear to distort the background image as if through mottled glass. Try changing 0:00:29.750 0:00:30.000 the text size and notice how the compositing effect remains consistent. Then make your 0:00:29.750 0:00:30.000 browser window really narrow and scroll horizontally. Again, everything should remain seamless and 0:00:29.760 0:00:30.010 consistent.

    0:00:29.760 0:00:30.010

    The demonstrated effect, that of having various 0:00:29.760 0:00:30.010 elements backed with translucent rippled glass of varying hues, is only possible using fixed-attachment 0:00:29.760 0:00:30.010 backgrounds in CSS. (Okay, maybe it could be done in Flash; I don't know.) I don't think 0:00:29.770 0:00:30.020 it's even possible with IE's proprietary filters, but even if this effect is possible with filters, 0:00:29.770 0:00:30.020 I could easily enough devise one that isn't.

    0:00:29.779 0:00:30.029

    I missed the original complexspiral demo-- how does this work?!?

    0:00:29.779 0:00:30.029

    Glad you asked. The effect demonstrated here 0:00:29.779 0:00:30.029 is achieved by using fixed background images, nothing more. For example, the main-content 0:00:29.789 0:00:30.039 area (the blue part here) uses the following styles for the default spiral-shell background: 0:00:29.789 0:00:30.039

    0:00:29.789  0:00:30.039  div#content {background: white url(glassy-ripple.jpg) 0 0 no-repeat fixed;} 0:00:29.789  0:00:30.039

    0:00:29.800 0:00:30.050 The above is equivalent to these styles:

    0:00:29.800 0:00:30.050
    div#content { 0:00:29.800  0:00:30.050  background-color: white; background-image: url(glassy-ripple.jpg); 0:00:29.800  0:00:30.050  background-position: 0 0; background-repeat: no-repeat; 0:00:29.800  0:00:30.050  background-attachment: fixed; } 0:00:29.800  0:00:30.050

    0:00:29.800 0:00:30.050 The effect of these longer rules is exactly the same; they're just split out into individual 0:00:29.810 0:00:30.060 background properties for more detailed consideration by you, gentle reader. 0:00:29.810 0:00:30.060

    0:00:29.810 0:00:30.060 First, check out the rippled-shell image found here: url(glassy-ripple.jpg). 0:00:29.820 0:00:30.070 Then come back to this page and I'll continue with the explanation. All done? Great. 0:00:29.820 0:00:30.070

    0:00:29.820 0:00:30.070 According to CSS, any background image that is "fixed" using background-attachment: 0:00:29.820 0:00:30.070 fixed; is fixed with respect to the viewport-- not the 0:00:29.830 0:00:30.080 element with which the image is associated. So I set the rippled-shell background image 0:00:29.830 0:00:30.080 to be aligned with the top left corner of the browser window (the viewport) with the 0:00:29.840 0:00:30.090 values given for background-position. However, the image will only be visible wherever 0:00:29.840 0:00:30.090 is intersects with the element to which it's been assigned. Therefore, even though the 0:00:29.850 0:00:30.100 top left corner of the rippled-shell image is aligned with the top left corner of the 0:00:29.850 0:00:30.100 viewport, we can only see it wherever it intersects with a div that has an id 0:00:29.860 0:00:30.110 with a value of content (which, again, happens to be the one containing this 0:00:29.860 0:00:30.110 text). 0:00:29.860 0:00:30.110

    0:00:29.860 0:00:30.110 So I set a fixed background for the BODY, the content DIV, and H1 0:00:29.869 0:00:30.119 and H2 elements scattered through the document. In any given case of an element's 0:00:29.869 0:00:30.119 display, we see whatever part of the associated background image intersects with the element. 0:00:29.869 0:00:30.119 The rest of the background image remains hidden.

    0:00:29.880 0:00:30.130

    And that's how it works. 0:00:29.880 0:00:30.130

    0:00:29.880 0:00:30.130

    I'm not seeing the compositing!

    0:00:29.880 0:00:30.130 Then I'm willing to bet that you're using Internet Explorer for Windows (any version), 0:00:29.890 0:00:30.140 or possibly Opera (version 6 or earlier). Neither of these browsers fully support background-attachment: 0:00:29.890 0:00:30.140 fixed for elements other than body. In the case of both, images are fixed with 0:00:29.900 0:00:30.150 respect to the elements that contain them, not the browser window, which is not what 0:00:29.900 0:00:30.150 CSS1 defines background-attachment: fixed to mean, although browsers are 0:00:29.900 0:00:30.150 allowed to ignore fixed if they stick to CSS1 (CSS2 requires its implementation 0:00:29.910 0:00:30.160 for conformance). And yes, this page uses a strict DOCTYPE, so IE6 is in "strict 0:00:29.910 0:00:30.160 mode." I guess when Microsoft claims 100% CSS1 compliance, they're referring 0:00:29.920 0:00:30.170 to the CSS1 core (a reduced subset of CSS1) instead of the entirety of the CSS1 0:00:29.920 0:00:30.170 specification. It tends to make me wonder how limited or flawed their "full support" 0:00:29.930 0:00:30.180 is for other key open specifications, like HTML and DOM. 0:00:29.930 0:00:30.180

    0:00:29.930 0:00:30.180

    Image credits

      0:00:29.930 0:00:30.180
    • Nautilus shell: scanned by and copyright Eric A. Meyer 0:00:29.930 0:00:30.180
    0:00:29.930 0:00:30.180

    Jump to

    0:00:29.940 0:00:30.190
    0:00:29.940 0:00:30.190 Answer: you don't, at least not structurally. But the appearance can be achieved very easily 0:00:29.940 0:00:30.190 just by using floated elements and, when necessary, some tiny negative margins. In this example, 0:00:29.949 0:00:30.199 I've wrapped the "Q" in a div of its own and then floated the div 0:00:29.949 0:00:30.199 over. Then I give the float some nice padding and margins, and center the character. Finally, 0:00:29.960 0:00:30.210 I set thick white borders on the float, which matches nicely with the white document background-- 0:00:29.960 0:00:30.210 but only the right and bottom borders are made thick. The top and left borders are set 0:00:29.970 0:00:30.220 to zero. To wit:

     

    0:00:29.970 0:00:30.220
    div#punch {float: left; font-size: 500%; width: 1.2em; 0:00:29.970  0:00:30.220  text-align: center; padding: 0.1em 0.1em 0; background: #568; color: white; border: solid 0:00:29.980  0:00:30.230  white 1px; border-width: 0 0.2em 0.2em 0; margin: 0 0.5em 0:00:29.980  0:00:30.230  0.2em 0;}
    0:00:29.980 0:00:30.230

    It all adds up to the appearance of a block 0:00:29.980 0:00:30.230 that's had a corner punched out and replaced, and the text in the block reflowed to go around 0:00:29.990 0:00:30.240 the punchout. And, in a sense, that's exactly what happened. But what if I want to put a 0:00:30.000 0:00:30.250 border around the main block of text? How do I keep it from encircling my punched-out 0:00:30.000 0:00:30.250 corner? Even worse, how do I get that border to run along the edge of the punchout? 0:00:30.010 0:00:30.260

    0:00:30.010 0:00:30.260
    0:00:30.010 0:00:30.260
    icon
    0:00:30.010 0:00:30.260

    Boxpunch

    0:00:30.010 0:00:30.260 So we can do it after all! (Assuming we aren't using IE5.x/Win or IE6/Win, that is, which 0:00:30.020 0:00:30.270 isn't able to keep up. If you want to see the variant that does work in IE/Win, go 0:00:30.020 0:00:30.270 ahead.) Notice how the border of the main div is bent out of a rectangle 0:00:30.029 0:00:30.279 so that it runs inside the floated element. Okay, I'm lying. That isn't what's really 0:00:30.029 0:00:30.279 happening. Instead, I set one-pixel black borders on the right and bottom edges of the 0:00:30.039 0:00:30.289 float, and no border at all on the top and left edges. Then the float is pulled one pixel 0:00:30.039 0:00:30.289 up and one pixel to the left, which is accomplished by setting -1px margins on those 0:00:30.050 0:00:30.300 sides. This causes the float to overlap the border set on the main div, thus 0:00:30.050 0:00:30.300 covering up the black border with the white background of the float. The code looks like 0:00:30.060 0:00:30.310 this:

    0:00:30.060 0:00:30.310
    div#main2 {border: 1px solid black;} div#punch2 {float: left; width: 100px; height: 0:00:30.060  0:00:30.310  70px; text-align: center; background: white; color: 0:00:30.060  0:00:30.310  black; border: solid black 1px; border-width: 0 1px 0:00:30.070  0:00:30.320  1px 0; padding: 0 10px 5px 0; margin: -1px 25px 10px 0:00:30.070  0:00:30.320  -1px;} div#punch2 img {height: 70px; width: 100px;} 0:00:30.070  0:00:30.320

    0:00:30.070 0:00:30.320 As in the curvelicious demo, the h1 at the top is 0:00:30.080 0:00:30.330 simply styled as normal, and its borders and background "slide under" the floated element. 0:00:30.080 0:00:30.330 This is expected behavior in CSS2. If you were to set a left border on the h1, 0:00:30.090 0:00:30.340 you'd have to make it at least 111px wide before it could be seen at all! Well, 0:00:30.090 0:00:30.340 unless it become so tall that it was taller than the float. Then you'd be able to see 0:00:30.100 0:00:30.350 it below the float. If your browser supports text zooming, try increasing the text size 0:00:30.100 0:00:30.350 until the h1 is taller than the float. You should see what I mean then. 0:00:30.110 0:00:30.360

    0:00:30.110 0:00:30.360
    0:00:30.110 0:00:30.360
    Like this text? It can be 0:00:30.110 0:00:30.360 yours for just $19.99! But wait! There's more! If you call in the next ten minutes, we'll 0:00:30.119 0:00:30.369 throw in a copy of Amaya absolutely free! Don't delay-- act now!
    0:00:30.119 0:00:30.369

    Again with the punching

    0:00:30.119 0:00:30.369 Of course, if one is floating elements, then one can float anything, not just images. In 0:00:30.130 0:00:30.380 this case I've floated a div, but it could have been any text element. The 0:00:30.130 0:00:30.380 borders and margins are set up just like last time. Think of it-- you could put a small 0:00:30.140 0:00:30.390 navigation panel in that float, or anything else that takes your fancy. A quotation, perhaps? 0:00:30.140 0:00:30.390 How about a small table of icons or decorative images? You could just float the table itself 0:00:30.150 0:00:30.400 and be done. Pretty cool, eh?

    0:00:30.150 0:00:30.400

    For that matter, why restrict yourself to 0:00:30.150 0:00:30.400 floating things into the corner of the box? How about going straight to the right or left 0:00:30.160 0:00:30.410 from within the block?

    0:00:30.160 0:00:30.410
    "Better to stick to what's needed."
    0:00:30.160 0:00:30.410

    It's the same basic principle as before, only 0:00:30.160 0:00:30.410 this time we need to draw three of the borders and only pull the float one pixel to the left. 0:00:30.170 0:00:30.420 We could keep pulling it one pixel upward as well, but that's no necessary here and 0:00:30.180 0:00:30.430 could (in theory) lead to complications. Better to stick to what's needed. Again, any element 0:00:30.180 0:00:30.430 could be floated, so you could float links for further reading, more decorative images 0:00:30.190 0:00:30.440 like folder tabs, a list of short ideas or points that are related to the main text, 0:00:30.190 0:00:30.440 a table of figures, or the familiar "pull quote" style of taking a short phrase in the 0:00:30.199 0:00:30.449 text and repeating it in larger text. Like we see here. 0:00:30.199 0:00:30.449

    div#punch3b {float: right; width: 25%; 0:00:30.199  0:00:30.449  text-align: left; font-size: 140%; font-weight: bold; font-style: 0:00:30.199  0:00:30.449  italic; padding: 1em; text-indent: -0.5em; background: 0:00:30.210  0:00:30.460  white; color: black; border: solid black 1px; 0:00:30.210  0:00:30.460  border-width: 1px 0 1px 1px; margin: 0.2em -1px 0.2em 0.5em;} 0:00:30.210  0:00:30.460

    0:00:30.210 0:00:30.460 Note that, due to rounding errors, Mozilla (and thus Netscape 6.x) may not move a right-floated 0:00:30.220 0:00:30.470 element over as far as it should be. If you resize your browser window enough times, you'll 0:00:30.220 0:00:30.470 see a black border appear to the right of the pull quote. That's because the float is 0:00:30.230 0:00:30.480 one pixel too far to the left, and the main div's border becomes visible. 0:00:30.230 0:00:30.480 Hopefully they'll fix that eventually.

    0:00:30.230 0:00:30.480

    There are any number of ways this concept 0:00:30.240 0:00:30.490 could be extended, really. The only limit is your imagination! And negative margins 0:00:30.240 0:00:30.490 don't have to be restricted to floats, either. Consider this fairly 0:00:30.250 0:00:30.500 irregular-looking page and how it's been created. Some floats, some normal-flow elements, 0:00:30.250 0:00:30.500 a few one-pixel negative margins, and you've got some twisty layouts! I just hope Wired 0:00:30.250 0:00:30.500 doesn't sue me for stylistic theft... 0:00:30.260 0:00:30.510

    0:00:30.260 0:00:30.510 ...would render in exactly the same way as the following document fragment and style 0:00:30.260 0:00:30.510 sheet: Header 0:00:30.260 0:00:30.510 Text How does one punch out the corner of an element 0:00:30.260 0:00:30.510 and put something in the space created? 0:00:30.270 0:00:30.520 coma purported 0:00:30.270 0:00:30.520 The page you are viewing right now exists to show off what can be accomplished with 0:00:30.270 0:00:30.520 pure CSS1, and that's all. This variant on complexspiral doesn't even use any CSS2 to 0:00:30.279 0:00:30.529 accomplish its magic. Remember: as you look this demo over, there is no Javascript here, 0:00:30.279 0:00:30.529 nor are any PNGs being used, nor do I employ any proprietary extensions to CSS or any other 0:00:30.289 0:00:30.539 language. It's all done using straight W3C-recommended markup and styling, all validated, plus a 0:00:30.289 0:00:30.539 total of four (4) images. 0:00:30.289 0:00:30.539 Unfortunately, not every browser supports all of CSS1, and only those browsers which 0:00:30.300 0:00:30.550 fully and completely support CSS1 will get this right. Despite some claims to the contrary, 0:00:30.300 0:00:30.550 IE6/Win's rendering of this page is not correct, as it (as well as some other browsers) doesn't 0:00:30.310 0:00:30.560 correctly support background-attachment: fixed for any element other than the body. That 0:00:30.310 0:00:30.560 makes it impossible to pull off the intended effect. Other browsers may or may not get 0:00:30.320 0:00:30.570 the effect right. Hands-on: Things to Examine 0:00:30.320 0:00:30.570 Before you start, make sure you're viewing this page in one of the browsers mentioned 0:00:30.320 0:00:30.570 above. Otherwise the descriptions to follow won't match what you see. 0:00:30.330 0:00:30.580 The first, easiest thing to do is scroll the page vertically. Make sure you scroll all 0:00:30.330 0:00:30.580 the way to the very end of the page and back. Notice how the various areas with colored 0:00:30.340 0:00:30.590 backgrounds also appear to distort the background image as if through mottled glass. Try changing 0:00:30.340 0:00:30.590 the text size and notice how the compositing effect remains consistent. Then make your 0:00:30.350 0:00:30.600 browser window really narrow and scroll horizontally. Again, everything should remain seamless and 0:00:30.350 0:00:30.600 consistent. 0:00:30.350 0:00:30.600 The demonstrated effect, that of having various elements backed with translucent rippled glass 0:00:30.360 0:00:30.610 of varying hues, is only possible using fixed-attachment backgrounds in CSS. (Okay, maybe it could 0:00:30.360 0:00:30.610 be done in Flash; I don't know.) I don't think it's even possible with IE's proprietary filters, 0:00:30.369 0:00:30.619 but even if this effect is possible with filters, I could easily enough devise one that isn't. 0:00:30.369 0:00:30.619 I missed the original complexspiral demo-- how does this work?!? 0:00:30.380 0:00:30.630 Glad you asked. The effect demonstrated here is achieved by using fixed background images, 0:00:30.380 0:00:30.630 nothing more. For example, the main-content area (the blue part here) uses the following 0:00:30.390 0:00:30.640 styles for the default spiral-shell background: 0:00:30.390 0:00:30.640 Previous
    0:00:30.390 0:00:30.640

    How about this curve, it is created using the sloping edge technique with stacked floats 0:00:30.390 0:00:30.640 of various sizes. The length of the div is increased with each float, and 0:00:30.400 0:00:30.650 the slope is changed by manipulating the thicknesses of the visible bottom 0:00:30.400 0:00:30.650 and invisible right borders.

    0:00:30.400 0:00:30.650 0:00:30.410 0:00:30.660 0:00:30.420 0:00:30.670 0:00:30.420 0:00:30.670 0:00:30.430 0:00:30.680 0:00:30.440 0:00:30.690 0:00:30.449 0:00:30.699 0:00:30.460 0:00:30.710 0:00:30.470 0:00:30.720 0:00:30.470 0:00:30.720 0:00:30.480 0:00:30.730 0:00:30.480 0:00:30.730
    0:00:30.480 0:00:30.730 0:00:30.490 0:00:30.740 0:00:30.490 0:00:30.740
    0:00:30.500 0:00:30.750
    Content inside bubble
    0:00:30.500 0:00:30.750

     

    0:00:30.520 0:00:30.770 0:00:30.520 0:00:30.770

    YouTube Captions, Valid CSS!!! (See source for unbelievable CODE!) Call Eric Meyer! YouTube Captions, Valid CSS!!! (See source for unbelievable CODE!) And while i invented this two years ago...(check an older video if you don't believe), I never copied and pasted it into an edit field...but tonight, ...»See Ya

    Halloween cookie muffin horny

    Gravest Halloween Video Hits Dogmeat (2011)

    Gravest Halloween Dogmeat Video ClassiXXX 2011

    Halloween Greatest Dogmeat Video ClassiXXX Bash 2011

    implantation Video-meat Halloween-meat scary-sexy Film-Jerry Lee Lewis Fetish-what Gets Me Hot Alex Chilton Traci Lords Google Preposterous Video-tiger Wood!

    1. Animoto - $WhatGetsMeHot$

      animoto.com/play/gnUI92YhYw1m3KXI0gd1BA
      WhatGetsMeHot$ Remix From $$$NICHOPOULOUZO$$$ YOUTUBE http://www.youtube.com/whatgetsmehot ELVIS: 'ODE TO A ROBIN' #1 WhatGetsMeHot ...
      You You shared this on Blogger - Nov 7, 2010

    2. Animoto - whatgetsmehot.posterous

      animoto.com/play/Thc9Z4RVChQiEQ10tYAArQSep 12, 2010
      Created about 1 year ago by http://whatgetsmehot.posterou ...
       
      You You shared this on Blogger - Nov 7, 2010
    3. Animoto - Mistress Lucrezia

      animoto.com/play/CruaxDkZQYKd60xPmsZI7QJul 1, 2010
      ... woman masturbate 170 <10 - 39 dennis hopper gary ...
       
      You You shared this on Blogger - Nov 7, 2010
    4. [[posterous-content:pid___2]]

      Animoto - Dogmeat 1 After 999999 Sept 28 2010

      animoto.com/play/lYlftqidCM3l430kRX6SzgOct 6, 2010
      ... cicciolina 4400 210 5% 53 what gets me hot 3600 91 3 ...
       
      You You shared this on Blogger - Nov 7, 2010
    5. Animoto - what gets me hot one second

      animoto.com/play/5ntRjyEj3DY0QsdRQsho4QMar 26, 2011
      what gets me hot one second. ... Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been ...
       
    6. Animoto - • WHATGETSMEHOT • ALL VIDEOS • PLAYLIST

      animoto.com/play/1T9f7ar4wftD9da78sII1w
      WHATGETSMEHOT • • ALL VIDEOS • PLAYLIST • • http://www.youtube.com/view_play_list?p=311E2065497619F1 • • Whatgetsmehot ...
      You visited this page on 10/20/11.
    7. Animoto - traci with throat singer what gets me hot one second

      animoto.com/play/HmBZIBzAwIbjHcDiw56rNw
      traci with throat singer what gets me hot one second.
    8. Animoto - What Gets Me Hot

      animoto.com/play/reoVVI0Ivi0JFmZxdDFCzw
      What Gets Me Hot. ... What Gets Me Hot. Flash Player Required. Unfortunately we couldn't load the video player as it requires a more recent version of the ...
    9. Animoto - Alex Chilton Rarest Videos

      animoto.com/play/TockE1sJqyGnpjVBCON16A
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 65 times. Artist: Step 2: music. Song: Step 2: music ...
    10. Animoto - White Dog Johnny Griffin Max Mon Amour with Jazz O ...

      animoto.com/play/w6JrB4qqc5RlJcfXW310fw
      See it this Christmas with all the Cats...Yeah! http://whatgetsmehot.blogspot.com http://youtube.com/whatgetsmehot production.

    [[posterous-content:pid___0]]

     

    1. Animoto - not safe for anything greatestits

      animoto.com/play/w7PhYnZFmyXxMJf3lwTqSwOct 26, 2010
      Created 12 months ago by http://whatgetsmehot.blogspot.... This video has been viewed 72 times. Artist: Charlie & Chan Song ...
       
    2. Animoto - What Lives on My Computer

      animoto.com/play/mRkjxKWROq1ml53ZOueprwMar 26, 2011
      Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been viewed 18 times. Artist: CHRISTOPHER ...
       
    3. Animoto - bubblegum lifeguard french commercial

      animoto.com/play/YGKqk9y6h5Cqc3y2Yxxr6g
      Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been viewed 9 times. Artist: The Lounge King ...
    4. Animoto - Chantilly Lee Lace Lewis

      animoto.com/play/BAnKbIy2hRC79W0YnLy5rQ
      Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been viewed 12 times. Artist: Sainkho Namtchylak Song: Long Continuum 3:39 ...
    5. Animoto - Dalintine's Day!

      animoto.com/play/KUbj6etMhWxjrwhuiLk0dA?utm_content.
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 248 times. Artist: Step 2: mu. Song: Step 2: mu ...
    6. Animoto - jerry lee don lane finished

      animoto.com/play/gXenKbvqVF7riJ0FBRh14Q
      Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been viewed 18 times. Artist: Song: AYNIL 2:45 BEGIN MEAT MAN TO END ...
    7. Animoto - preston johnson and the memphis cocksuckers

      animoto.com/play/yTptAgYbhL239tdghXFzOw?utm_content...
      Created over 1 year ago by whatgetsmehot visualguidanceltd. This video has been viewed 35 times. Artist: memphis cocksuckers. Song: preston johnson ...
    8. Animoto - PIKACHU Valentine's Day!

      animoto.com/play/Kb5OUaaDoGT7LnCt8g1XWw?utm_content...
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 10 times. Artist: Dave Krooshof Song: Fire ...
    9. Animoto - High Hollollalia Whoop Kiss

      animoto.com/play/hqhqJffXkC831wZVW3SF4w
      Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been viewed 12 times. Artist: Song: sho. Create your own Animoto video now! ...
    10. Animoto - Dogmeat--Crazy Right Now!

      animoto.com/play/SilTkJDG7k8k99hCvZyPzg
      Created 10 months ago by http://whatgetsmehot.blogspot.... This video has been viewed 41 times. Artist: crazy from mash 34. Song: crazy from mash 34 ...

    [[posterous-content:pid___6]][[posterous-content:pid___7]][[posterous-content:pid___8]][[posterous-content:pid___9]][[posterous-content:pid___10]][[posterous-content:pid___11]][[posterous-content:pid___12]][[posterous-content:pid___13]][[posterous-content:pid___14]][[posterous-content:pid___15]][[posterous-content:pid___16]][[posterous-content:pid___17]][[posterous-content:pid___18]][[posterous-content:pid___19]][[posterous-content:pid___20]][[posterous-content:pid___21]][[posterous-content:pid___22]][[posterous-content:pid___23]][[posterous-content:pid___24]][[posterous-content:pid___25]][[posterous-content:pid___26]][[posterous-content:pid___27]][[posterous-content:pid___28]][[posterous-content:pid___29]]

     

    [[posterous-content:pid___1]]

     

     

    1. Animoto - Jerry Lee Punk Rock 'n' Roll

      animoto.com/play/HUtVN3uKRZFR701cdLBiMQMar 26, 2011
      Get Adobe Flash player. whatgetsmehot visualguidanceltd ... Created almost 2 years ago by whatgetsmehot ...
    2. Animoto - last born to be wild to tone down.mp4

      animoto.com/play/RMv8XjLyxVZFPS1IbacS6AMar 28, 2010
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 360 times. Artist: The Hague Time ...
    3. Animoto - Multiple Tiger Slaps

      animoto.com/play/7BlivNV9WIFfI9VkoxO8rAMar 27, 2010
      Created almost 2 years ago by http://whatgetsmehot.blogspot.... This video has been viewed 238 times. Artist: black shaft ...
    4. Animoto - YouWeirdTube LimbsAndThings: It Opens Your Heart

      animoto.com/play/doJilRp0xnyASMp1RAfSiA
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 98 times. Artist: Amarantine... (everlasting. ...
    5. Animoto - Cocaine Dutch GlitchNote: Your

      animoto.com/play/p4tGV0jCzgsBhKLyMob65w
      Created 11 months ago by http://whatgetsmehot.blogspot.... This video has been viewed 43 times. Artist: Note: Your book has been uploaded and added to the ...
    6. Animoto - Mrory's Jazz Tongue Opera Starring Taquila Mockingbird ...

      animoto.com/play/0ssJrT1d3iOlQdELhSnd1Q
      Feb 17, 2010 – Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 203 times. Artist: PRI's The World ...
    7. Animoto - You cannot 'Like' this Dogmeat post

      animoto.com/play/hm1sGcQtz4fgKaHs4oBsug
      Created 12 months ago by dogmeat whatgetsmehot.posterous . This video has been viewed 44 times. Artist: Step Song: Step. Create your own Animoto video now! ...
    8. Animoto - Dogmeat Prod. by Martin Scorcese

      animoto.com/play/8YDqZI2iEU07xJ29Z07adw
      Created about 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 104 times. Artist: Step 2: Song: Step 2: ...
    9. Animoto - GORILLA Valentine's Day!

      animoto.com/play/LM0yuYSeqiINf0SDYBWepw
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 25 times. Artist: MAX MON AMOUR Song: MAX MON AMOUR ...

     

    1. [[posterous-content:pid___3]]

     

    [[posterous-content:pid___4]]

    1. Animoto - Speed King gogowalk.mp4

      animoto.com/play/PgWofins8xGx0fptM6xWQAJun 8, 2009
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 185 times. Artist: Speed King is ...
    2. Animoto - when i used to be compulsive

      animoto.com/play/8GhAw8WON1Iu0F7zPu5KOgApr 12, 2011
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 77 times. Artist: Step 2: Mu Song ...
    3. Animoto - Jerry Lee Lewis Keith Richards Gary Busey Joggin'

      animoto.com/play/VLfgW7YK0mkWwk7mLR16PA
      Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been viewed 18 times. Artist: Song: petedrakejoggin ...
    4. Animoto - jubbo snow white and a couple

      animoto.com/play/1wLwp3Sj1D7MWF1GOwumjg?utm_content...
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 52 times. Artist: Fatty Jubbo Song: C'mon Marianne ...
      You visited this page on 10/20/11.
    5. Animoto - Orig. Joggin' No Busey (May be the YouTube one check)

      animoto.com/play/4I4cmXl56icITaSy7kdRIg
      Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been viewed 15 times. Artist: Song: petedrakejoggin ...
    6. Animoto - eiffel tyra

      animoto.com/play/Bf8NEezcuwRgxqHQh8xyTw
      Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been viewed 10 times. Artist: Song: be s. Create your own Animoto video now! ...
    7. Animoto - Step 3: Cu

      animoto.com/play/czTsQXwPo2sezUXM9Ar3gA
      Created about 1 year ago by http://whatgetsmehot.posterou.... This video has been viewed 584 times. Artist: Step Song: Step. Create your own Animoto video ...
    8. Animoto - Farenheit 451 (Best Dogmeat Animoto)

      animoto.com/play/T4pn0lVs5qML5Qi10KWLiQ
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 192 times. Artist: tep 2: musi. Song: tep 2: musi ...
    9. Animoto - marty scorcese directs this one

      animoto.com/play/KpGBQdHhBx9xGJZFfZpaOw?utm_content...
      Created 12 months ago by http://whatgetsmehot.blogspot.... This video has been viewed 781 times. Artist: Louis_Prima-Sympathy_f ...
    10. Animoto - Play vacuum cleaner

      animoto.com/play/TMcW66wCek7kjxJo89I8jw
      Results 1 - 14 – Created 10 months ago by dogmeat whatgetsmehot.posterous . This video has been viewed 28 times. Artist: Artist's Related Mp3 Downloads ...[[posterous-content:pid___5]]

     

    1. Animoto - whatgetsmehot.posterous

      animoto.com/play/Thc9Z4RVChQiEQ10tYAArQ
      whatgetsmehot.posterous. ... Created about 1 year ago by http://whatgetsmehot.posterou.... This video has been viewed 161 times. Artist: tep 2: M ...
      You You shared this on Blogger - Nov 7, 2010
    2. Animoto - How Keith Richards Snorted Dad!

      animoto.com/play/0pRb1Ul8Ne2HhLvW55x6QgNov 13, 2010
      Created 11 months ago by dogmeat whatgetsmehot.posterous . This video has been viewed 66 times. Artist: Your chosen ...
       
    3. Animoto - You cannot 'Like' this Dogmeat post

      animoto.com/play/hm1sGcQtz4fgKaHs4oBsug
      Created 12 months ago by dogmeat whatgetsmehot.posterous . This video has been viewed 44 times. Artist: Step Song: Step. Create your own Animoto video now! ...
    4. Animoto - Play vacuum cleaner

      animoto.com/play/TMcW66wCek7kjxJo89I8jw
      Results 1 - 14 – Created 10 months ago by dogmeat whatgetsmehot.posterous . This video has been viewed 28 times. Artist: Artist's Related Mp3 Downloads ...

     

    Gravest Halloween Dogmeat Video ClassiXXX 2011 Halloween Greatest Dogmeat Video ClassiXXX Bash 2011 implantation Video-meat Halloween-meat scary-sexy Film-Jerry Lee Lewis Fetish-what Gets Me Hot Alex Chilton Traci Lords Google Preposterous Video-tiger Wood! Animoto - $ WhatGetsMeHot $ animoto.com/pl ...»See Ya

    Halloween Bizarre Predictable Dogmeat Video Collection

    • Jerry Lee Punk at whatgetsmehot.posterous.com

      Jerry Lee Jerry Lee at whatgetsmehot.posterous.com

      WHATGETSMEHOT • • ALL VIDEOS • PLAYLIST

      Creationist WHATGETSMEHOT at whatgetsmehot

      • WHATGETSMEHOT • • ALL VIDEOS • PLAYLIST • • http://www.youtube.com/view_play_list?p=311E2065497619F1 • • Whatgetsmehot • • 【• http://www.youtube.com/whatgetsmehot • • 【• http://visualguidanceltd.blogspot.com •】• • 【• @mrjyn • http://twitter.com/mrjyn •】• • 【•AND•】• • 【• @whatgetsmehot • http://twitter.com/whatgetsmehot •】 • ☆SUBSCRIBE☆ • 【 http://www.youtube.com/subscription_center?add_user=whatgetsmehot •】• • Whatgetsmehot • • ♫Quoi Obtient Moi Chaud♨ ♥What gets me hot♨ • ★ Daily•motion Accueil ☆ • Mrjyn • Daily•motion • http://dailymotion.com/mrjyn • • Whatgetsmehot • 864,785 views • • http://dailymotion.com/whatgetsmehot ☆ Suivez Twitter ★ • @ mrjyn • http://twitter.com/mrjyn • ☆ ABONNEZ-VOUS ☆ • http://www.youtube.com/subscription_center?add_user=whatgetsmehot • • Gros♥bises • • Mrjyn ♥ France et Daily•motion

      Www
      Logo3
      Marshgirl
      Oono_
      Lino_amelia_ripoff

      CreateSpeed Kinggogowalk at DOGMEAT

      is Hard rock/Heavy Metal band Deep Purple song, which was released on their fourth album, Deep Purple in Rock in 1970. It is the album's opening track and first Ian Gillan written by Deep Purple song. Inter alia, a British Venom Band is coveroinut song.Piece has been borrowed many words 1950 rockSongs, such as Speed King on hard rock/heavy metal yhtye Deep Purplen kappale, joka julkaistiin heidän neljännellä albumilla Deep Purple in Rock vuonna 1970. Se on albumin aloituskappale ja ensimmäinen Ian Gillanin kirjoittama Deep Purplen kappale. Muun muassa brittiläinen Venom -yhtye on coveroinut kappaleen.Kappaleen sanoja on lainattu monista 1950-luvun rock-kappaleista, kuten Little RichardiSpeed King är en låt av det brittiska hårdrocksbandet Deep Purple och öppningslåten på albumet Deep Purple in Rock. Men Speed King släpptes först på b-sidan till singeln Black Night.Speed King gick först under namnet Kneel And Pray, men var då inte heller samma låt. Melodin har i stort sett inte förändrats, men texten är annorlunda. Speed King är ingen cover, men innehåller olika textrader från redan då kända låtar av bland andra Elvis Presley och Chuck Berry.Andra versioner av låten finns på den remastrade utgåvan av Deep Purple in Rock.n "GoodSpeed King is a song by British rock band Deep Purple and the opening song on the album Deep Purple in Rock. But Speed King was first released on the b-side to the single Black Night.Speed King first went under the name Kneel And Pray, But then was not the same song. The melody is almost not changed, but the text is different. Speed King is no cover, But contains different lines of text from which the already-known songs from Elvis Presley and Chuck Berry.Other versions of the song on the rem"Speed King" on laul ansambli Deep Purple albumilt "In Rock". See oli esimene laulja Ian Gillani kirjutatud sõnadega laul. Ta kasutas laulu teksti kirjutamisel tsitaate Elvis Presley, Little Richardi ja Chuck Berry loomingust sellises järjekorras nagu need talle meenusid.Laulu pikkus plaadil on 5:49, kuid kontsertidel on lugu sageli muudetud ja lisatud pikki improvisatsioone, mis venitavad laulu sageli 10-15 minuti pikkuseks.Laul ilmus B-poolel singlil, mille A-poole lugu oli "Black Night".Deep Purple'i 25. aastapäeva albumil on laulu"Speed King" the song of the band Deep Purple albumIn Rock". It was the first singer Ian Gillani Song written in words. He used to write quotations from the text of the song Elvis Presley, Little Richard and Chuck Berry creations in the order that they remembered him.Song length album is 5:49, but the concerts are frequently revised and added to the long history of improvisation, which often drag their feet singing a 10-15 minute period.The song appeared on the B side releases, the A-side song was "Black Night".st klaveriversioon.astered edition of the Deep Purple in Rock. Golly Miss Mollysta".Little Richard "Good golly Miss Molly".

      Create La Düsseldorf Lucrezia fetish mistress at dogmeat: the end of the internet

      February 08, 2010 La Düsseldorf - Rheinita (video) This is a very weird version of La Düsseldorf's hit "Rheinita", apparently a rehearsal for the German TV show "Szene 79" with host Thomas Gottschalk (who seems weirdly out of place introducing a bunch of tripping Electro-Krautrockers.) I am not sure if this was ever broadcast. YouTube: [link] There is a Quicktime version of this clip on La Düsseldorf's website, but the quality is not much better: [link] Posted by Lukas on February 08, 2010 at 09:00 AM in Lukas' Posts, Music, Television, Video Clips | Permalink | Comments (0) | TrackBack (0) February 01, 2010 Devo - Private Secretary (video) Another rare musical treasure, brought to you by the Internet via some bad VHS tape... Early Devo playing "Private Secretary" at Kent State in 1973. YouTube: [link] Posted by Lukas on February 01, 2010 at 09:00 AM in Lukas' Posts, Music, Video Clips | Permalink | Comments (5) | TrackBack (0) January 25, 2010 Trude Herr - Ich will keine Schokolade (video) Here is a great clip from 1965, German actress and singer Trude Herr singing her 1960 hit "Ich will keine Schokolade" (I don't want chocolate). YouTube: [link] Posted by Lukas on January 25, 2010 at 09:00 AM in Lukas' Posts, Music, Video Clips | Permalink | Comments (0) | TrackBack (0) January 18, 2010 Sparklehorse - It's A Wonderful Life (Guy Maddin video) After having recently seen my first Guy Maddin film, the wonderful and disturbing Brand Upon The Brain!, I stumbled upon this music video he did for the Sparklehorse song It's A Wonderful Life, as part of the Sundance Channel's Sonic Cinema. In case you wonder about the instrumentation, Mark Linkous plays both an Optigan and a Chamberlin in this song. YouTube: [link] Posted by Lukas on January 18, 2010 at 09:00 AM in Art, Film, Lukas' Posts, Music, Video Clips | Permalink | Comments (8) | TrackBack (0) December 21, 2009 Vanya Schroeder - Last Year in Marienbad (video) This is a two-minute summary of Alain Resnais' and Alain Robbe-Grillet's enigmatic arthouse classic L'Année dernière à Marienbad. In contrast to the original, this work by Vanya Schroeder is in color, and the actors are toys. It is nearly perfect, only the creepy organ music is missing. YouTube: [link] Posted by Lukas on December 21, 2009 at 09:00 AM in Film, Lukas' Posts, Video Clips | Permalink | Comments (2) | TrackBack (0) December 14, 2009 Baby Zizanie (MP3) Thalassaphobia Baby Zizanie was one of the many projects of J.G.Thirlwell (of Foetus), this one a collaboration with Jim Coleman (ex-Cop Shoot Cop), active from 2002 to 2003. Back then they played several gigs, among them a live session on Fabio's show on WFMU (Real Audio | Playlists), and released the 12" mini-LP Domestic Landscapes #3: Thalassaphobia on the Nail label in Italy in a limited edition of 500 copies. Later they recorded one more track for the Domestic Landscapes CD compilation on Nail, and then they disappeared. According to J.G. Thirlwell, a Baby Zizanie anthology at some point in the future is possible, let's hope that this will eventually materialize. In the meantime, he has kindly given his permission to post one track from Thalassaphobia: [listen] Baby Zizanie - Milky Rise (MP3) By the way, the word "thalassaphobia" is apparently a misspelling of "thalassophobia", which according to Wikipedia is "an intense, irrational and persistent fear of the sea". Posted by Lukas on December 14, 2009 at 09:00 AM in Lukas' Posts, MP3s, Music | Permalink | Comments (0) | TrackBack (0) December 07, 2009 Craig Baldwin - The 70s Dimension (video) This is a cut-up of 70s music videos from the DVD extras for Craig Baldwin's film "Sonic Outlaws" about Negativland, U2, John Oswald, The Tape-Beatles, culture-jamming, copyright etc. YouTube: [link] You should also check out this great interview with Craig from Steal This Film II (which you can download in its entirety from the official site.) Posted by Lukas on December 07, 2009 at 09:00 AM in Copyleft, Film, Lukas' Posts, Music, Video Clips | Permalink | Comments (0) | TrackBack (0) November 30, 2009 Shirin Neshat - Turbulent (video) This 1998 video installation was directed by Iranian-American visual artist and director Shirin Neshat. The singers are played by Shoja Azari (though the voice is that of Shahram Nazeri) and the amazing vocalist and composer Sussan Deyhim. If you want to watch the same video on YouTube, go here: [link] And to help you make sense of it all, here is a great essay about the piece by director Atom Egoyan: [link]. Just this year, Shirin Neshat won the Silver Lion at the Venice Film Festival for her feature film debut "Women Without Men", co-directed by Shoja Azari (who also wrote the screenplay). Posted by Lukas on November 30, 2009 at 09:00 AM in Film, Lukas' Posts, Music, Video Clips | Permalink | Comments (3) | TrackBack (0) November 16, 2009 Die Goldenen Zitronen - Die Entstehung der Nacht (MP3s, video) Two years ago I wrote a short blog post praising the criminally underrated German avant-punk-pop mavericks Die Goldenen Zitronen (The Golden Lemons). Unfortunately, it didn't catapult them to superstardom in the US, so I'll try again... Three years after their last studio album "Lenin" they finally released a new one, "Die Entstehung der Nacht" (The Emergence of the Night), as good or better as their last ones. Here is the strange and spooky video for the instrumental title song, apparently a modern version of the story of The Pied Piper of Hamelin. As a bonus, here are two of my favorite non-instrumentals from the album as MP3s: [listen] Des Landeshauptmann's letzter Weg (with lyrics in the style of a Hölderlin ode about Jörg Haider and the weird way in which a law-and-order politician who liked the Nazis and died in a car accident, speeding and drunk, could become a popular hero in the Austrian state of Carinthia after his death) | [listen] Drop the stylist (features Mark Stewart of The Pop Group, Melissa Logan of Chicks on Speed, and some swearing in English, so don't play it on the radio or in church...) Now if only a US distributor would pick up this album... Posted by Lukas on November 16, 2009 at 09:00 AM in Lukas' Posts, MP3s, Music, Video Clips | Permalink | Comments (1) | TrackBack (0) November 09, 2009 Feeling B - Ich such' die DDR (video) Posted by Lukas on November 09, 2009 at 09:00 AM in Government, History, Lukas' Posts, Music, Video Clips | Permalink | Comments (1) | TrackBack (0) November 02, 2009 Burroughs narrates Poe (video, MP3) This post arrives slightly late for Halloween, but I'll take both William S. Burroughs and Edgar Allen Poe any time of the year. After some Poe readings by James Mason, we have this gem from the 1995 videogame "The Dark Eye", featuring William Burroughs reading "The Masque of the Red Death", accompanied by some creepy slides. YouTube: Part 1 | Part 2 Just the audio, in slightly higher quality: [listen] The Masque of the Red Death (MP3) from RealityStudio Posted by Lukas on November 02, 2009 at 09:00 AM in Books, Games, Lukas' Posts, MP3s, Video Clips, Video Games | Permalink | Comments (2) | TrackBack (0) October 26, 2009 The Way Out, A Portrait of Xentos Jones (video excerpt) This excerpt of the 2003 film "The Way Out, A Portrait of Xentos Jones" by Kosten Koper and Luke Fowler recently popped up on YouTube. I hope that the whole thing will be released on DVD some day... YouTube: [link] | More info on Kosten Koper's blog: [link] | More Xentos on the WFMU blog: Die Trip Computer Die - Flowerball (a whole album for free!) | King Leopold Of All The Belgians (weird half-improvised radio play) Posted by Lukas on October 26, 2009 at 09:00 AM in Art, Film, Lukas' Posts, Music, Video Clips | Permalink | Comments (7) | TrackBack (0) October 19, 2009 RIP Elizabeth Clare Prophet (MP3s) Ecp This Thursday Elizabeth Clare Prophet (aka Guru Ma), the former leader of the bizarre new age doomsday cult Church Universal and Triumphant (CUT) aka The Summit Lighthouse, died at the age of 70 in a nursing home in Bozeman, Montana, after suffering from Alzheimer's disease since 1998. The Summit Lighthouse was started in 1958 by Mark Prophet in Washington, D.C. He later married Elizabeth, they moved it to Colorado, and she took over the leadership after Mark's death in 1973. Under the name Church Universal and Triumphant they eventually moved to California in 1976, and finally to Montana in 1986, where they bought a 12,000-acre ranch just north of Yellowstone Park. Being convinced that the end of the world was near, they built a 756-person underground bomb shelter in a pristine alpine meadow and stocked up on firearms. When everyone assembled in the bomb shelters on the date of the predicted apocalypse on March 15, 1990, nothing happened, and eventually CUT members started to lose faith in the prophetic abilities of Elizabeth Prophet, and left the church in droves. Continue reading "RIP Elizabeth Clare Prophet (MP3s)" » Posted by Lukas on October 19, 2009 at 09:00 AM in Lukas' Posts, MP3s, Music, Propaganda, Religion | Permalink | Comments (21) | TrackBack (0) October 12, 2009 Henry Hills - SSS (video) SSS is an video by experimental filmmaker Henry Hills. From the description: Posted by Lukas on October 12, 2009 at 09:00 AM in Art, Film, Lukas' Posts, Music, New York City, Video Clips | Permalink | Comments (2) | TrackBack (0) October 05, 2009 Gorefest - Autobahn (video) Posted by Lukas on October 05, 2009 at 09:00 AM in Lukas' Posts, Music, Video Clips | Permalink | Comments (4) | TrackBack (0) September 28, 2009 RIP Arthur Ferrante Arthur Ferrante, one half of the legendary piano duo Ferrante & Teicher, died last week at the age of 88, one year after his partner Louis Teicher passed away. While most of the later Ferrante & Teicher recordings are quite schmaltzy easy-listening fare, their early 1950s albums of prepared piano pop were masterpieces of the space age, goofy, inventive, catchy, and influenced by John Cage, something nobody had ever tried before. Here is a video of the song African Echoes from their 1956 album Soundproof (mono). Originally, Soundproof was released in two different versions, stereo and mono, with completely different songs. To make the confusion complete, they concurrently released the album Soundblast, consisting of the same songs as the stereo version of Soundproof, but this time in mono. Negativland would have been proud of themselves had they had done this in the 1950s... And nobody should have lived without having heard their version of Tico Tico from Soundblast: [listen] Ferrante & Teicher - Tico Tico (mp3) As an encore, here is Christian Marclay's remix-or-something of Ferrante and Teicher from his album More Encores: [listen] Christian Marclay - Ferrante & Teicher (mp3) Posted by Lukas on September 28, 2009 at 09:00 AM in Film, Lukas' Posts, MP3s, Music, Video Clips | Permalink | Comments (4) | TrackBack (0) September 21, 2009 Pentecostal ZZ Top Impersonators (video) Here is a very catchy song by WinterBand about the modern scourge of women talking in Church. The self-description reads "WinterBand is a father and son Christian rock/blues/metal band. We are Apostolic Pentecostal Acts 2:38 Christians." Take that, ZZ Top! And if you wonder who the other two guys playing with Father and Son Winter are, here is another quote from their YouTube description: "Special thanks to Bobo on bass, Hayseed on guitar and especially the Dept of Corrections for allowing them to do this as part of work release." Posted by Lukas on September 21, 2009 at 09:00 AM in Lukas' Posts, Music, Propaganda, Religion, Video Clips | Permalink | Comments (7) | TrackBack (0) September 14, 2009 The Cookie Monster and 9/11 Cookie_monster_9_11 Just after the 8th anniversary of the WTC attacks, I discovered this shocking cover of a 1976 Sesame Street special "Monsters on the Loose!" on David Icke's official forum. Click the link to read more about this story the government doesn't want you to know. Posted by Lukas on September 14, 2009 at 09:00 AM in Current Affairs, Government, History, Lukas' Posts, New York City, Propaganda | Permalink | Comments (9) | TrackBack (0) September 07, 2009 Bollywood Disco Dancer (video) This could be filed under "Cheesy Euro-Disco" if only India was a part of Europe. But so it goes to show that Europe isn't the only continent producing cheesy disco videos. This clip is taken from the 1983 Bollywood movie Disco Dancer, a big success in India and the Soviet Union at the time. YouTube: [link] (There is a higher quality version, too, and you will find more musical numbers from this film in the "related videos".) Posted by Lukas on September 07, 2009 at 09:00 AM in Film, Lukas' Posts, Music, Video Clips | Permalink | Comments (5) | TrackBack (0) August 31, 2009 Hildegard Knef (video) Here is a vintage TV clip of one of the greats of German chanson, Hildegard Knef, live in Berlin in 1968. The original German title of the song is "Von nun an gings bergab", translated into English as "From Here On It Got Rough". YouTube: [link] Check out hoffmann9471's other uploads on YouTube if you want more of this. Posted by Lukas on August 31, 2009 at 09:00 AM in Lukas' Posts, Music, Television, Video Clips | Permalink | Comments (3) | TrackBack (0) Older Posts » snow white and a couple

      Create Snow White Rated Porn O'Clock Dogmeat: 'if you stand right here, you can see the end of the Internet!'.

      Animoto - $WhatGetsMeHot$

      animoto.com/play/gnUI92YhYw1m3KXI0gd1BACached
      You +1'd this publicly. Undo
      WhatGetsMeHot$ Remix From $$$NICHOPOULOUZO$$$ YOUTUBE http://www. youtube.com/whatgetsmehot ELVIS: 'ODE TO A ROBIN' #1 WhatGetsMeHot ...
      You You scared this on Blogger - Nov 7, 2010
    • Animoto - whatgetsmehot.posterous

      animoto.com/play/Thc9Z4RVChQiEQ10tYAArQ
      You +1'd this publicly. Undo
      Sep 12, 2010
      Created about 1 year ago by http://whatgetsmehot.posterou ...
      You You shared this on Blogger - Nov 7, 2010
    • Animoto - Mistress Lucrezia

      animoto.com/play/CruaxDkZQYKd60xPmsZI7Q
      You +1'd this publicly. Undo
      Jul 1, 2010
      ... woman masturbate 170 <10 - 39 dennis hopper gary ...
      You You shared this on Blogger - Nov 7, 2010
    • Animoto - Dogmeat 1 After 999999 Sept 28 2010

      animoto.com/play/lYlftqidCM3l430kRX6Szg
      You +1'd this publicly. Undo
      Oct 6, 2010
      ... cicciolina 4400 210 5% 53 what gets me hot 3600 91 3 ...
      You You shared this on Blogger - Nov 7, 2010
    • Animoto - what gets me hot one second

      animoto.com/play/5ntRjyEj3DY0QsdRQsho4Q
      You +1'd this publicly. Undo
      Mar 26, 2011
      what gets me hot one second. ... Created almost 2 years ago by whatgetsmehot visualguidanceltd. This video has been ...
    • Animoto - • WHATGETSMEHOT • ALL VIDEOS • PLAYLIST

      animoto.com/play/1T9f7ar4wftD9da78sII1wCached
      You +1'd this publicly. Undo
      WHATGETSMEHOT • • ALL VIDEOS • PLAYLIST • • http://www.youtube.com/ view_play_list?p=311E2065497619F1 • • Whatgetsmehot ...
    • Animoto - traci with throat singer what gets me hot one second

      animoto.com/play/HmBZIBzAwIbjHcDiw56rNwCached
      You +1'd this publicly. Undo
      traci with throat singer what gets me hot one second.
    • Animoto - What Gets Me Hot

      animoto.com/play/reoVVI0Ivi0JFmZxdDFCzwCached
      You +1'd this publicly. Undo
      What Gets Me Hot. ... What Gets Me Hot. Flash Player Required. Unfortunately we couldn't load the video player as it requires a more recent version of the ...
    • Animoto - Alex Chilton Rarest Videos

      animoto.com/play/TockE1sJqyGnpjVBCON16ACached
      You +1'd this publicly. Undo
      Created over 1 year ago by http://whatgetsmehot.blogspot.... This video has been viewed 65 times. Artist: Step 2: music. Song: Step 2: music ...
    • Animoto - White Dog Johnny Griffin Max Mon Amour with Jazz O ...

      animoto.com/play/w6JrB4qqc5RlJcfXW310fwCached
      You +1'd this publicly. Undo
      See it this Christmas with all the Cats...Yeah! http://whatgetsmehot.blogspot. com http://youtube.com/whatgetsmehot production.

    Jerry Lee Punk at whatgetsmehot.posterous.com Jerry Lee Jerry Lee at whatgetsmehot.posterous.com WHATGETSMEHOT • • ALL VIDEOS • PLAYLIST Creationist WHATGETSMEHOT at whatgetsmehot • WHATGETSMEHOT • • ALL VIDEOS • PLAYLIST • • http://www.youtube.com/view_play_list?p=311E2065497619F1 • • Whatgetsmehot ...»See Ya