Menu
Your Cart

Yunteng VCT-668 Camera Tripod

Yunteng VCT-668 Camera Tripod
Yunteng VCT-668 Camera Tripod
  • Price: TK 2,650/-
  • Stock: In Stock
  • Model: VCT-668
TK 2,650/-
Ex Tax: TK 2,650/-

Key Features

    • c Model: VCT-668
    • Material: Aluminum Alloy & Plastic
    • Loading Capacity: 3kg
    • Non-slip rubber feet
    • Extendable up to 1460mm
    Description

    Yunteng VCT-668 Camera Tripod

    The Yunteng VCT-668 Camera Tripod is a premium, multi-functional tripod designed to meet the needs of photographers and videographers. Featuring a robust construction with a combination of aluminum alloy and plastic, this tripod offers both durability and lightweight portability, making it ideal for a variety of camera setups.

    This tripod boasts adjustable legs, allowing for flexible height settings to accommodate different shooting angles. With a 360-degree swivel ball head, the Yunteng VCT-668 ensures smooth pan and tilt movements, allowing you to capture shots from virtually any angle. Its quick-release plate makes it easy to mount and remove your camera, providing efficiency during setup and transitions.

    The tripod’s sturdy legs are equipped with rubber feet for a non-slip grip, providing stability even on uneven surfaces. Its maximum height of 168cm and compact design make it perfect for outdoor shoots, travel, and studio work. The Yunteng VCT-668 is compatible with a range of devices, including DSLRs, mirrorless cameras, and camcorders.

    Whether you are a professional photographer or an enthusiast, the Yunteng VCT-668 Camera Tripod provides reliable support and exceptional performance for all your creative needs.

    Buying Suggestions from Dear IT Solution
    Purchase the Yunteng VCT-668 Camera Tripod from Dear IT Solution and enjoy the best price in Bangladesh. With our commitment to providing the best quality products insured in Bangladesh, this tripod is an excellent choice for your photography and videography needs. Order today and elevate your shooting experience!

    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};