随笔分类 - css3
css笔记
摘要:<image class="anima" mode="widthFix" scr="/pic.png"> .anima{ animation-name:likes;//动画名称 animation-direction:alternate;//动画 奇数放大,偶数缩小 animation-timing
阅读全文
摘要:<view class="mask" v-if="lookUpTips" @touchmove.stop.prevent="catchtouchmove"></view> <view class="popup-draw-active" v-if="lookUpTips" @touchmove.sto
阅读全文
摘要:<view class='money'> <view style="flex: 1;"> <text class="real-curr">{{currencyed}}</text> <text class="real-price">{{changeAMT(goods.productAttr.pric
阅读全文
摘要:设置父元素opacity:0.5,子元素不设置opacity,子元素会受到父元素opacity的影响,也会有0.5的透明度。 即使设置子元素opacity:1,子元素的opacity:1也是在父元素的opacity:0.5的基础上设置的,因此子元素的opacity还是0.5。 解决方法:直接给父元素
阅读全文
摘要:选择器例子例子描述CSS .class .intro 选择 class=”intro” 的所有元素。 1 #id #firstname 选择 id=”firstname” 的所有元素。 1 * * 选择所有元素。 2 element p 选择所有 <p> 元素。 1 element,element
阅读全文