.circle-line text:nth-child(2){animation-delay:0.4s;} .circle-line text:nth-child(3){animation-delay:0.6s;} .circle-line text:nth-child(4){animation-delay:0.8s;} .circle-line text:nth-child(5){animation-delay:1s;} .circle-line text:nth-child(6){animation-delay:1.2s;} .circle-li...
一、小程序事件的绑定 ⼩程序中绑定事件,通过bind关键字来实现。如 bindtap bindinput bindchange 等 不同的组件⽀持不同的事件,具体看组件的说明即可。1. wxml Plain Text 复制代码 9 1 2. page Plain Text 复制代码 9 1 2 3 4 5 6 7 Page({ // 绑定的事件 handleInput: function(...
1/*pages/interface/index.wxss*/2.button {3margin-top: 10rpx;4}56.books {7padding: 020rpx;8margin-top: 20rpx;9border-radius: 10rpx;10background-color: #fff;11}1213.books .item {14display: flex;15justify-content: space-between;16height: 44rpx;17padding: 20rpx 0;18text-align: cent...
.pay-leftview:nth-child(1) { margin-bottom:15rpx; } .pay-leftview:nth-child(1)text:nth-child(2) { color:#F73A3F; } .pay-leftview:nth-child(2)text:nth-child(2) { font-size:18rpx; color:#F73A3F } .pay-leftview:nth-child(2)text:nth-child(3) { color:#F73A3F; } .pay-btn...
self.page.get_element(".page-section.page-section-gap > view.body-view > switch:nth-child(1)").switch() slide组件处理 ❝ slider 组件滑动到指定数值 ❞ 示例代码如下: def test_slide_to(self): ''' slider组件处理演示 :return:
.circle-line text:nth-child(8){ transform: rotate(315deg); animation-delay: 1.6s; } @keyframes circle { 0%{ opacity: 0.05; } 100%{ opacity: 0.9; } } /*动画二:整体旋转 */ .circle-line-spin{ width: 100px; height: 100px; ...
swiper-item:nth-child(1) .item{ background-color: lightskyblue; } swiper-item:nth-child(2) .item{ background-color: lightgreen; } swiper-item:nth-child(3) .item{ background-color: lightcoral; } swiper 组件的常用属性 只有亲自动手试了才能真正体会记住。
解决IE8下CSS3选择器 :nth-child() 不兼容的问题 1.定义和用法 :nth-child(n) 选择器匹配属于其父元素的第 N 个子元素,不论元素的类型。 n 可以是数字、关键词或公式。 1 2 3 4123456 选取上面结构里面的li ul li:nth-child(1){color:#fff;} /...
设置上面三段内容不同的动画时长,最后一段文字动画时长最长。 .show_box.show_item:nth-child(1){animation:fadeIn-left1s;}.show_box.show_item:nth-child(2){animation:fadeIn-left2s;}.show_box.show_item:nth-child(3){animation:fadeIn-left3s;} ...
用类名选择器来选中父元素,再用后代选择器来选择子元素来统一设置其宽高等内容,当然如果想单独对一个子元素进行设置,可以通过C3选择器nth-child(1)来选中子元素,并对其进行添加样式,通过改变父元素的布局就能实现子元素之间的排列了。 /* pages/CshPage1/CshPage1.wxss *//* 给子元素设置大小 */.cont...