Arreglado problema con opacidad en IE7

git-svn-id: https://192.168.0.254/svn/Proyectos.OriginalHouse_Web/trunk@32 54e8636e-a86c-764f-903d-b964358a1ae2
This commit is contained in:
David Arranz 2011-07-13 18:57:06 +00:00
parent 308200af2a
commit 31527ea220
3 changed files with 8 additions and 81 deletions

View File

@ -40,6 +40,8 @@
margin: 0 auto ! important;
-ms-interpolation-mode: bicubic;
opacity: 0.5;
filter: alpha(opacity=50);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
.tubepress_thumb a {
@ -48,6 +50,8 @@
.tubepress_thumb a:hover img {
opacity: 1;
filter: alpha(opacity=100);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
.tubepress_meta_group {

View File

@ -88,6 +88,8 @@
box-shadow:none;
display: hidden;
opacity: 0.5;
filter: alpha(opacity=50);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
.tcp_product_thumb a:hover, .post a:hover {
@ -96,6 +98,8 @@
.tcp_product_thumb a:hover img, .post a:hover img {
opacity: 1;
filter: alpha(opacity=100);
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

View File

@ -1,24 +1,5 @@
/*-------------------------------------------------------------------------------------
FILE INFORMATION
Description: JavaScript on the "Saving Grace" WooTheme.
Date Created: 2011-04-07.
Author: Tiago and Matty.
Since: 1.0.0
TABLE OF CONTENTS
- Toggle Donations Popup on Donation Meter
- Featured Slider Setup (jCarouselLite)
- Add alt-row styling to tables.
- Superfish navigation dropdown.
- Detect and adjust the heights of the main columns to match.
- Tougle Search Form
- function clearText() - Clear Comment Form.
-------------------------------------------------------------------------------------*/
jQuery(document).ready(function() {
@ -34,68 +15,6 @@ jQuery(document).ready(function() {
jQuery( '.tubepress_thumb a img' ).fadeIn("slow");
}
/*-----------------------------------------------------------------------------------*/
/* Featured Slider Setup (jCarouselLite) */
/*-----------------------------------------------------------------------------------*/
if ( jQuery( '.slides' ).length ) {
var totalSlides = 0;
totalSlides = jQuery( 'input[name="woo-true-slide-count"]' ).val();
totalSlides = parseInt( totalSlides );
jQuery( 'input[name="woo-true-slide-count"]' ).remove();
if ( woo_jcarousel_settings.auto > 0 ) {
woo_jcarousel_settings.auto = parseInt( woo_jcarousel_settings.auto );
} else {
woo_jcarousel_settings.auto = null;
}
woo_jcarousel_settings.speed = parseInt( woo_jcarousel_settings.speed );
jQuery('#scrolling-images.slides').jCarouselLite({
circular: true,
auto: woo_jcarousel_settings.auto,
speed: woo_jcarousel_settings.speed,
visible: totalSlides, // This cannot be greater than the number of slides available.
btnNext: '.btn-next',
btnPrev: '.btn-previous',
scroll: 1,
vertical: false
});
jQuery('#slides.slides').jCarouselLite({
circular: true,
auto: woo_jcarousel_settings.auto,
speed: woo_jcarousel_settings.speed,
visible: 1,
btnNext: '.btn-next',
btnPrev: '.btn-previous',
scroll: 1,
start: 1,
beforeStart: function( e ) {
jQuery( e ).parent().fadeTo( 'fast', 0);
},
afterEnd: function( e ) {
jQuery( e ).parent().fadeTo( 'slow', 1);
/*
, function () {
if ( jQuery( e ).prev().hasClass( 'slide-number-1' ) ) {
jQuery( '#scolling-images.slides .slide-number-1, #slides.slides .slide-number-1' ).remove();
}
}
*/
}
});
} // End IF Statement
/*-----------------------------------------------------------------------------------*/
/* Superfish navigation dropdown. */